moneropro/README.md

20 lines
308 B
Markdown
Raw Normal View History

2024-11-11 23:00:51 +00:00
# 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
```