Skip to content

Commit e428ab1

Browse files
author
Andres Vargas
committed
update ignores files
1 parent f44f1e6 commit e428ab1

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.git
2+
.gitignore
3+
node_modules
4+
coverage
5+
htmlcov
6+
tags

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,9 @@ demo/static/dist
128128
.vscode
129129
.__*
130130
tags
131+
.git
132+
.gitignore
133+
node_modules
134+
coverage
135+
htmlcov
136+
tags

Bakefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
docker-build:
1+
docker/build:
22
docker build -t pingcrm .
33

4-
docker-run:
4+
docker/run:
55
docker run -p 8000:8000 pingcrm
66

7+
8+
docker: setup docker/build docker/run
9+
echo "All ready"
10+
711
update:
812
pip-compile -o requirements.txt
913

app/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# SECURITY WARNING: don't run with debug turned on in production!
2626
DEBUG = True
2727

28-
ALLOWED_HOSTS = []
28+
ALLOWED_HOSTS = ['*']
2929

3030

3131
# Application definition

0 commit comments

Comments
 (0)