No description
Find a file
Kumi 1b73d9f8b9
Some checks are pending
Docker / build (push) Waiting to run
chore(Dockerfile): update base image to python:3.12-slim
Switch to a lighter, more recent Python 3.12-slim base image to reduce image size and leverage the latest Python features and improvements. This change removes the need for additional locale configuration, simplifying the Dockerfile.
2024-11-12 14:49:33 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app fix(charts): add TODO for Reddit API placeholder 2024-11-12 14:40:05 +01:00
.gitignore fix: address formatting and configuration inconsistencies 2024-11-12 13:45:40 +01:00
Dockerfile chore(Dockerfile): update base image to python:3.12-slim 2024-11-12 14:49:33 +01:00
README.md add readme 2024-11-12 00:00:51 +01:00
requirements.txt fix: address formatting and configuration inconsistencies 2024-11-12 13:45:40 +01:00

Moneropro

Initial setup

# 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