initial Rails application

This commit is contained in:
2026-09-13 17:55:31 -06:00
commit ff0a306668
99 changed files with 2977 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash -e
# If running the rails server then create or migrate existing database
if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then
./bin/rails db:prepare
fi
exec "${@}"