No description
Find a file
Kumi 8e48bce180
Some checks are pending
Docker / build (push) Waiting to run
refactor: apply consistent string styling and error handling
Applied consistent use of double quotes for strings across the codebase to improve readability and maintain consistency. Updated exception handling to explicitly catch specific exceptions for better error management. Refactored context and view functions for cleaner and more structured output. Removed unused imports and unnecessary comments to streamline the code.
2024-11-12 14:09:33 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app refactor: apply consistent string styling and error handling 2024-11-12 14:09:33 +01:00
.gitignore fix: address formatting and configuration inconsistencies 2024-11-12 13:45:40 +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 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