Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/germainlefebvre4/cryptobot-controller
Project to self-host a cryptobot farm based on whittlem pycryptobot. Main entry at germainlefebvre4 cryptobot-project.
https://github.com/germainlefebvre4/cryptobot-controller
Last synced: 15 days ago
JSON representation
Project to self-host a cryptobot farm based on whittlem pycryptobot. Main entry at germainlefebvre4 cryptobot-project.
- Host: GitHub
- URL: https://github.com/germainlefebvre4/cryptobot-controller
- Owner: germainlefebvre4
- License: mit
- Created: 2021-07-07T08:27:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T07:59:52.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T20:52:22.041Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cryptobot Controller
## Getting started
Install required packages:
```bash
sudo apt update
sudo apt install python3-pip python3-dev
pip install pipenv
```Run the app:
```bash
pipenv update
pipenv run uvicorn app.main:app --port=8081 --reload
```**Troubleshooting**
Some distributions might miss some packages. These are some hints if needed:
```bash
# cryptography/cffi
sudo apt install build-essential libssl-dev libffi-dev
```## Development
### Setup workspace
```bash
sudo apt update
sudo apt install python3-pip python3-dev
pip install pipenv
pipenv update --dev
```### Run locally
This section use docker database called `cryptobot`.
```bash
pipenv run uvicorn app.main:app --port=8081 --reload
```### Run tests
This section use docker database called `cryptobot_test`.
```bash
pipenv run pytest -sv app/tests/
```