From 20c9dba737113b683b3fe9fea18c5fe479407ada Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 20 Aug 2019 08:20:53 +0200 Subject: initial commit, everything works now(tm) --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..54132c2 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# Yacos Backend + +Yet another Check-Out System + +# Setup Dev environment +## Nix + +```console +nix-shell +``` + +## Legacy (untested) + +```console +virtualenv . +. bin/activate +pip install django==2.2 djangorestframework django-cors-headers pillow +``` + +# Run Dev Build + +``` +python manage.py makemigrations +python manage.py migrate +python manage.py createsuperuser +python manage.py runserver & +firefox localhost:8000 +``` -- cgit v1.2.3