Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Torrent Scrapper
## Running the app in the development mode

Run 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
```