Prepare working with authentication and Tailwind

This commit is contained in:
kbe
2025-08-16 21:28:49 +02:00
parent 9ec13c7d3d
commit 87af76f078
11 changed files with 5900 additions and 243 deletions

10
server.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash -e
if [ -f tmp/pids/server.pid ]; then
rm tmp/pids/server.pid
fi
rails server -b 0.0.0.0
# This will exec the CMD from your Dockerfile, i.e. "npm start"
exec "$@"