No description
Find a file
Kumi 8c779ba5e5
Some checks are pending
Docker / build (push) Waiting to run
feat(management): add command to initialize chart data
Introduced a new management command to initialize the database with current data for specified cryptocurrencies (`xmr`, `btc`, `dash`, `zec`, `grin`). This process involves deleting existing data entries and fetching updated historical and market data. This enhancement ensures the application starts with the most recent information, improving data accuracy and reliability.
2024-11-13 14:26:15 +01:00
.github/workflows Create docker-publish.yml 2024-11-12 01:24:22 +01:00
app feat(management): add command to initialize chart data 2024-11-13 14:26:15 +01:00
.gitignore chore: update .gitignore for database journals 2024-11-13 13:37:36 +01:00
Dockerfile Merge remote-tracking branch 'github/main' 2024-11-13 14:26:01 +01:00
README.md add readme 2024-11-12 00:00:51 +01:00
requirements.txt refactor: replace Google Sheets with ODS processing 2024-11-13 12:55:17 +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