Skip to content

Commit

Permalink
Merge pull request #139 from hibare/dev
Browse files Browse the repository at this point in the history
Fix:  Django Admin: Unable to login #135
  • Loading branch information
hibare authored Jan 2, 2022
2 parents 26b950b + af01054 commit c4445d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions backend/.env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
DEBUG=<VALUE>
SECRET_KEY=<VALUE>
ALLOWED_HOSTS=<VALUE>
CSRF_TRUSTED_ORIGINS=<VALUE>
DATABASE_URL=<VALUE>
DJANGO_SU_USERNAME=<VALUE>
DJANGO_SU_PASSWORD=<VALUE>
2 changes: 1 addition & 1 deletion backend/moni/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = 'v0.6.2'
__version__ = 'v0.6.3'
VERSION = __version__ # synonym
TITLE = 'Moni'
1 change: 1 addition & 0 deletions backend/moni/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

ALLOWED_HOSTS = config('ALLOWED_HOSTS', cast=Csv(), default='*')

CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', cast=Csv(), default='')

# Application definition

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moni",
"version": "0.6.2",
"version": "0.6.3",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit c4445d2

Please sign in to comment.