Compare commits
No commits in common. "6102459637f320dbab6574e73bf22d1602c91052" and "250f841e0027aa253cb62ccf4faa999dd339d20a" have entirely different histories.
6102459637
...
250f841e00
|
@ -12,5 +12,4 @@ COPY entrypoint.sh /
|
|||
RUN chmod +x /entrypoint.sh
|
||||
USER timetracker
|
||||
EXPOSE 8000
|
||||
ENV VERSION_NUMBER $(git describe --tags --abbrev=0)
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
5
Makefile
5
Makefile
|
@ -1,4 +1,4 @@
|
|||
.PHONY: createsuperuser shell
|
||||
.PHONY: createsuperuser
|
||||
|
||||
all: css migrate
|
||||
|
||||
|
@ -35,6 +35,3 @@ loadsample:
|
|||
|
||||
createsuperuser:
|
||||
python src/web/manage.py createsuperuser
|
||||
|
||||
shell:
|
||||
python src/web/manage.py shell
|
|
@ -47,8 +47,7 @@ def add_purchase(request):
|
|||
form.save()
|
||||
|
||||
context["form"] = form
|
||||
context["title"] = "Add New Purchase"
|
||||
return render(request, "add.html", context)
|
||||
return render(request, "add_purchase.html", context)
|
||||
|
||||
|
||||
def add_game(request):
|
||||
|
|
Loading…
Reference in New Issue