Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binoy638/torrent-scrapper
A torrent scrapper REST API powered by fastAPI
https://github.com/binoy638/torrent-scrapper
docker docker-compose fastapi lambda python3 serverless
Last synced: 3 days ago
JSON representation
A torrent scrapper REST API powered by fastAPI
- Host: GitHub
- URL: https://github.com/binoy638/torrent-scrapper
- Owner: binoy638
- Created: 2022-02-22T15:25:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-21T07:52:57.000Z (4 months ago)
- Last Synced: 2024-07-21T08:54:32.899Z (4 months ago)
- Topics: docker, docker-compose, fastapi, lambda, python3, serverless
- Language: Python
- Homepage: https://torrentscrapper.vercel.app/
- Size: 202 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Torrent Scrapper
## Running the app in the development modeRun the following command to launch the project in dev mode
```bash
uvicorn app.main:app --proxy-headers --host 0.0.0.0 --port 8000 --http h11 --use-colors --log-level debug --access-log --reload
```## Docker for development
Run the following command to launch the project inside a docker container
```bash
docker-compose -f docker-compose.dev.yml up
```## Docker for Production
Run the following command build & run a distroless docker container for production
```bash
docker-compose up
```