diff --git a/README.md b/README.md new file mode 100644 index 0000000..c216718 --- /dev/null +++ b/README.md @@ -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 +```