rails new

This commit is contained in:
2022-11-21 12:10:04 +02:00
commit f736604a2b
76 changed files with 1402 additions and 0 deletions

8
bin/dev Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
if ! gem list foreman -i --silent; then
echo "Installing foreman..."
gem install foreman
fi
exec foreman start -f Procfile.dev "$@"