Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gitlab Lobby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
TPA
Gitlab Lobby
Merge requests
!3
Readme Update - Admin creation and localhost change
#7
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Readme Update - Admin creation and localhost change
#7
MariaV/gitlab-lobby:readme_admin_explain
into
main
Overview
5
Commits
3
Pipelines
0
Changes
2
Closed
MariaV
requested to merge
MariaV/gitlab-lobby:readme_admin_explain
into
main
4 years ago
Overview
5
Commits
3
Pipelines
0
Changes
2
Expand
Updated Readme and settings.py to make setup easier for new users:
Updated settings.py with 127.0.0.1 in ALLOWED_HOSTS to simplify runserver execution
Added alternate command to start virtual env: $ python3 -m venv .env
Added readme documentation for creation of admin superuser per issue
#7
#7
.
0
0
Merge request reports
Compare
main
version 1
39f34cb3
4 years ago
main (base)
and
version 1
latest version
3a403214
3 commits,
4 years ago
version 1
39f34cb3
2 commits,
4 years ago
2 files
+
29
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/lobby/settings.py
+
1
−
1
Options
@@ -94,7 +94,7 @@ STATICFILES_DIRS = [
]
# Set this to the set of hostnames you are using.
ALLOWED_HOSTS
=
[
"
localhost
"
]
ALLOWED_HOSTS
=
[
"
localhost
"
,
"
127.0.0.1
"
]
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG
=
True
Loading