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

https://github.com/madi-s/flask-restful-rq-app

Tutorial for building RESTful API with Flask
https://github.com/madi-s/flask-restful-rq-app

flask restful-api rq uwsgi

Last synced: 3 months ago
JSON representation

Tutorial for building RESTful API with Flask

Awesome Lists containing this project

README

          

# Flask-Restful-Api
Sample application dedicated to building RESTFul API with Flask

## Run Redis Queue:

```bash
rq worker --with-scheduler
```

## Run Web App:

#### Option 1 (simple)
```bash
python run.py
```

#### Option 2 (uWSGI)

```bash
uwsgi app.ini
```