Skip to content
Snippets Groups Projects
Verified Commit d64ce0d6 authored by David (Jointech)'s avatar David (Jointech)
Browse files

fix(init): collect static resources

parent 36c3fe9a
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,8 @@ if [[ $docker == "false" ]]; then ...@@ -40,6 +40,8 @@ if [[ $docker == "false" ]]; then
if [[ $mode == "init-db" ]]; then if [[ $mode == "init-db" ]]; then
echo "apply database migrations" echo "apply database migrations"
./manage.py migrate ./manage.py migrate
echo "collect static resources"
./manage.py collectstatic
echo "create django superuser" echo "create django superuser"
./manage.py createsuperuser --noinput ./manage.py createsuperuser --noinput
echo "create rsa key" echo "create rsa key"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment