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

https://github.com/mbrsagor/microservices

Flask microservice web application
https://github.com/mbrsagor/microservices

flask flask-application python3

Last synced: about 2 months ago
JSON representation

Flask microservice web application

Awesome Lists containing this project

README

          

# MicroService
Flask microservice web app

The following steps will walk you thru installation on a Mac. I think linux should be similar. It's also possible to develop on a Windows machine, but I have not documented the steps. If you've developed Flask app on Windows, you should have little problem getting up and running.

### Prerequisites

- Python 3.8.5
- Flask

> How to run the app in your local dev server.

```
git clone https://github.com/mbrsagor/microservices.git
cd microservices
virtualenv venv --python=python3.8
source venv/bin/activate
pip install -r requirements.txt
```

###### Start the flask server globally
``FLASK_ENV=development flask run``