File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ You have different ways of setting up your development environment:
1010
1111- [ Docker] ( #docker-setup )
1212- [ Manual] ( #manual-setup )
13- - ~~ Vagrant (Deprecated)~~
1413
1514### Docker setup
1615
@@ -72,6 +71,7 @@ docker-compose exec exodus-worker /entrypoint.sh "<command>"
7271
7372to make actions, where ` <command> ` can be:
7473
74+ - ` collect-static ` : Collect all static files
7575- ` compile-messages ` : Compile the translation messages
7676- ` create-db ` : Create the database and apply migrations
7777- ` create-user ` : Create a Django user
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ declare -r pymanage="$pyexe manage.py"
55declare -r custom_docker_settings=" /exodus/exodus/exodus/settings/custom_docker.py"
66
77declare -Ar commandList=(
8+ [collect-static]=collectStatic
89 [compile-messages]=compileMessages
910 [create-db]=createDB
1011 [create-user]=createUser
@@ -18,6 +19,7 @@ declare -Ar commandList=(
1819)
1920
2021declare -Ar commandHelpList=(
22+ [collect-static]=' collect all static files'
2123 [compile-messages]=' compile translation messages'
2224 [create-db]=' create database if required and attend to migrations'
2325 [create-user]=' actually create a super user if not created yet'
You can’t perform that action at this time.
0 commit comments