add readme

This commit is contained in:
w 2024-11-12 00:00:51 +01:00
parent bec3f6095b
commit 795430c0ba

19
README.md Normal file
View file

@ -0,0 +1,19 @@
# Moneropro
## Initial setup
```bash
# on the host
mkdir data
docker run --rm \
-v ./app:/src/app \
-v ./data:/opt \
-p 8080:8000 moneropro
# in the container
python manage.py makemigrations
python manage.py makemigrations charts
python manage.py migrate
python manage.py createsuperuser
```