Skip to content

Commit f44f1e6

Browse files
author
Andres Vargas
committed
Update bakeFile
1 parent 126aab1 commit f44f1e6

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

Makefile renamed to Bakefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
docker-build:
2+
docker build -t pingcrm .
3+
4+
docker-run:
5+
docker run -p 8000:8000 pingcrm
16

27
update:
38
pip-compile -o requirements.txt
@@ -6,10 +11,13 @@ setup:
611
pip install -r requirements.txt
712
pip install coverage pip-tools
813
npm install
14+
npm run build
915
python manage.py migrate
1016
python populate.py
11-
python manage.py createsuperuser
17+
python manage.py createsuperuser --username admin --email [email protected]
1218

1319
test:
1420
coverage run manage.py test
1521
coverage report
22+
23+
all: setup test docker-build

requirements.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ marshmallow
66
inertia-django
77
gunicorn
88
django-webserver[gunicorn]
9+
bake-cli

requirements.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
# pip-compile --output-file=requirements.txt
66
#
77
asgiref==3.2.3 # via django
8+
bake-cli==0.12.0
9+
click==7.1.1 # via bake-cli
10+
colorama==0.4.3 # via bake-cli
11+
decorator==4.4.2 # via networkx
12+
delegator.py==0.1.1 # via bake-cli
813
django-js-routes==0.1.3
914
django-seed==0.2.2
1015
django-test-plus==1.4.0
@@ -14,6 +19,10 @@ faker==4.0.0 # via django-seed
1419
gunicorn==20.0.4
1520
inertia-django==0.2.2
1621
marshmallow==3.4.0
22+
networkx==2.4 # via bake-cli
23+
pexpect==4.8.0 # via delegator.py
24+
ptyprocess==0.6.0 # via pexpect
25+
pygments==2.6.1 # via bake-cli
1726
python-dateutil==2.8.1 # via faker
1827
pytz==2019.3 # via django
1928
six==1.14.0 # via python-dateutil

0 commit comments

Comments
 (0)