EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 3ee63842 authored by Nikola Jankovic's avatar Nikola Jankovic :computer:
Browse files

added configure

parent 1c8872fe
No related branches found
No related tags found
1 merge request!7Configure http access
Pipeline #20597 passed
......@@ -3,6 +3,7 @@
echo "Running configure.sh"
DEBUG=${DEBUG:="false"}
ENABLE_HTTP_ACCESS=${ENABLE_HTTP_ACCESS:="false"}
# Configure instance
sed -e "s/'disable_existing_loggers': True,/'disable_existing_loggers': False,/" -i pvs_instance/settings.py
HANDLERS="'handlers': {\n
......@@ -62,6 +63,13 @@
sed -e "s/SECRET_KEY = '.*'/SECRET_KEY = '${DJANGO_SECRET_KEY}'/" -i pvs_instance/settings.py
chmod g+w -R .
chgrp users -R .
if [[ "$ENABLE_HTTP_ACCESS" = true ]] ; then
echo "Installing and enabling http_access"
pip install http-access==0.0.1
echo "INSTALLED_APPS += ('http_access', )" >> pvs_instance/settings.py
echo "urlpatterns.append(re_path(r'^http/', include('http_access.urls')))" >> pvs_instance/urls.py
fi
if [[ "$DEBUG" = true ]] ; then
echo "DEBUG ON Setting functions"
......
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