https://github.com/harryscholes/friendly-sniffle
https://github.com/harryscholes/friendly-sniffle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harryscholes/friendly-sniffle
- Owner: harryscholes
- Created: 2023-05-24T07:21:39.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-24T11:57:13.000Z (about 2 years ago)
- Last Synced: 2025-02-05T10:49:37.010Z (4 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# friendly-sniffle
## Setup
```
conda create -n friendly-sniffle python=3.11
conda activate friendly-sniffle
pip install -r requirements.txt
```## Testing
```
pytest
```## Running
- Obtain a Covalent API key and set it to `COVALENT_API_KEY` as an environment variable, optionally in a `.env` file.
- Run:```
# Development
hypercorn app/main:app --reload# Production
hypercorn app/main:app
```