No description
Find a file
Kumi 302c590f1c
Some checks are pending
Docker / build (push) Waiting to run
refactor(sync): switch to local excel file for updates
Replaced pygsheets-based Google Sheets handling with pandas to read and write to local Excel files. Updated exception handling to include `TypeError`. This change enhances performance and reliability by avoiding network dependencies and directly interacting with local files.

Fixes issues with unauthorized access and inefficient data handling.
2024-11-13 12:05:11 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app refactor(sync): switch to local excel file for updates 2024-11-13 12:05:11 +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 refactor: switch to pandas for data extraction 2024-11-13 10:08: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