We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#!/bin/bash set -e set -x script/bootstrap MAIN_FOLDER=ost_export if [ ! -e $MAIN_FOLDER/.env ]; then cp $MAIN_FOLDER/.env.example $MAIN_FOLDER/.env cat $MAIN_FOLDER/.env echo "To edit: $ nano $MAIN_FOLDER/.env" fi
The text was updated successfully, but these errors were encountered:
#!/bin/bash set -e set -x script/bootstrap # Populate .env cp main/.env{.example,} SECRET=$(mcookie) sed -i 's|DJANGO_SECRET_KEY=""|DJANGO_SECRET_KEY="'$SECRET'"|g' main/.env # If sqlite database is present, move it away if [ -e db.sqlite3 ]; then mv db.sqlite3 db.sqlite3~ fi # Run migrations poetry run python manage.py migrate
Sorry, something went wrong.
f9700fd
No branches or pull requests
The text was updated successfully, but these errors were encountered: