Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pbansal
Test-Docker
Commits
f0a3bc03
Commit
f0a3bc03
authored
Jun 04, 2020
by
B13nch3n
Browse files
Create non-priviledged user for API
parent
6eb5a05f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Docker/cathapi/entrypoint.sh
View file @
f0a3bc03
...
...
@@ -90,4 +90,22 @@ except:
raise
END
# create a normal user to play with the API
>
&2
echo
"Create user for the API"
python3 manage.py shell
<<
END
from django.contrib.auth.models import User
try:
User.objects.get(username='sib_ws5')
except User.DoesNotExist:
user = User.objects.create_user('sib_ws5', password='s1bday5ZOZO')
user.is_superuser=False
user.is_staff=False
user.save()
except Exception as dexc:
if str(dexc) == 'UNIQUE constraint failed: auth_user.username':
pass
except:
raise
END
exec
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment