No description
Find a file
Kumi c9fc6942b0
Some checks are pending
Docker / build (push) Waiting to run
chore(deps): update package versions in requirements.txt to at least build on Python 3.12
Upgraded various dependencies to their latest versions, including aiohttp, frozenlist, multidict, pandas, python-dateutil, and yarl. These updates assure compatibility with Python 3.12 and may include performance enhancements and bug fixes.
2024-11-12 07:50:32 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app fix spacing and typos 2024-11-12 01:19:52 +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(deps): update package versions in requirements.txt to at least build on Python 3.12 2024-11-12 07:50:32 +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