summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 54132c2b4769c1fd34431d991c536c6ac3eaa970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
```