Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
ref name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
avan1235 committed Mar 7, 2020
1 parent 2bd9db9 commit dc3b9ea
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/webserver_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
- uses: actions/checkout@v1
- name: Deploy to Heroku
if: github.ref == 'refs/heads/server' && job.status == 'success'
run: git subtree push --prefix server https://heroku:${{ secrets.HEROKU_API_TOKEN }}@git.heroku.com/mycanteenapp.git remotes/origin/server:master
run: git subtree push --prefix server https://heroku:${{ secrets.HEROKU_API_TOKEN }}@git.heroku.com/mycanteenapp.git server:master
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
.idea/
!**/__pycache__/
*.log
*.pot
*.pyc
local_settings.py
Binary file removed server/__pycache__/manage.cpython-38.pyc
Binary file not shown.
Binary file removed server/home/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file removed server/home/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file removed server/home/__pycache__/views.cpython-38.pyc
Binary file not shown.
Binary file removed server/server/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file removed server/server/__pycache__/settings.cpython-38.pyc
Binary file not shown.
Binary file removed server/server/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file removed server/server/__pycache__/wsgi.cpython-38.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion server/server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []
ALLOWED_HOSTS = ['*']


# Application definition
Expand Down

0 comments on commit dc3b9ea

Please sign in to comment.