|
138 | 138 |
|
139 | 139 | if [ -z "${ADMIN_EXISTS}" ]
|
140 | 140 | then
|
141 |
| -cat <<EOD | python manage.py shell |
142 |
| -import os |
143 |
| -from django.contrib.auth.models import User |
144 |
| -User.objects.create_superuser( |
145 |
| - os.getenv('DD_ADMIN_USER'), |
146 |
| - os.getenv('DD_ADMIN_MAIL'), |
147 |
| - os.getenv('DD_ADMIN_PASSWORD'), |
148 |
| - first_name=os.getenv('DD_ADMIN_FIRST_NAME'), |
149 |
| - last_name=os.getenv('DD_ADMIN_LAST_NAME') |
150 |
| -) |
151 |
| -EOD |
152 |
| - |
153 |
| - # load surveys all at once as that's much faster |
154 |
| - echo "Importing fixtures all at once" |
155 |
| - python3 manage.py loaddata system_settings initial_banner_conf product_type test_type \ |
156 |
| - development_environment benchmark_type benchmark_category benchmark_requirement \ |
157 |
| - language_type objects_review regulation initial_surveys role sla_configurations |
158 |
| - |
159 |
| - echo "UPDATE dojo_system_settings SET jira_webhook_secret='$DD_JIRA_WEBHOOK_SECRET'" | python manage.py dbshell |
160 |
| - |
161 |
| - echo "Importing extra fixtures" |
162 |
| - # If there is extra fixtures, load them |
163 |
| - for i in $(find dojo/fixtures/extra_*.json | sort -n 2>/dev/null) ; do |
164 |
| - echo "Loading $i" |
165 |
| - python3 manage.py loaddata "${i%.*}" |
166 |
| - done |
167 |
| - |
168 |
| - echo "Installing watson search index" |
169 |
| - python3 manage.py installwatson |
170 |
| - |
171 |
| - # surveys fixture needs to be modified as it contains an instance dependant polymorphic content id |
172 |
| - echo "Migration of textquestions for surveys" |
173 |
| - python3 manage.py migrate_textquestions |
174 |
| - |
| 141 | + . /entrypoint-first-boot.sh |
| 142 | + |
175 | 143 | create_announcement_banner
|
176 | 144 | initialize_data
|
177 | 145 | fi
|
0 commit comments