|
@@ -74,3 +74,12 @@ python manage.py create_metaservice_default_data
|
|
|
if (($GENERATE_TEST_USERS)); then
|
|
|
python manage.py create_metaservice_test_users
|
|
|
fi
|
|
|
+
|
|
|
+# Checking for webservice_running/handlers/.env
|
|
|
+if [ -f webservice_running/handlers/.env ]; then
|
|
|
+ echo "env file for handlers already exists. "
|
|
|
+else
|
|
|
+ echo_warning "Creating env file for handlers."
|
|
|
+ cp webservice_running/handlers/.env.example webservice_running/handlers/.env
|
|
|
+ echo_success "Created env file for handlers."
|
|
|
+fi
|