Initial commit

This commit is contained in:
2023-01-27 22:55:09 +11:00
commit 833f3ea8b2
130 changed files with 5637 additions and 0 deletions

19
script/server Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
# script/server: Launch the application and any extra required processes
# locally.
set -e
cd "$(dirname "$0")/.."
test -z "$HANAMI_ENV" && HANAMI_ENV='development'
if ! command -v overmind > /dev/null; then
echo "You must install Overmind to use this script. See:"
echo " . https://github.com/DarthSim/overmind#installation"
exit 1
fi
# Boot the app and any other necessary processes
exec env OVERMIND_PORT=5001 overmind start -f Procfile.dev