No description
Find a file
Kumi 1465c63e37
Some checks are pending
Docker / build (push) Waiting to run
chore: loosen version restrictions on Google deps
Reduced version restrictions for several Google-related packages, changing them to allow any version less than 3.0.0. This change provides more flexibility and avoids potential dependency conflicts with future updates. Consider revisiting the need to pin dependencies so strictly.
2024-11-12 13:25:39 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app feat(admin): expand model registrations 2024-11-12 10:33:47 +01:00
.gitignore organize files to use with Docker 2024-11-11 23:58:39 +01:00
Dockerfile organize files to use with Docker 2024-11-11 23:58:39 +01:00
README.md add readme 2024-11-12 00:00:51 +01:00
requirements.txt chore: loosen version restrictions on Google deps 2024-11-12 13:25:39 +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