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
- Host: GitHub
- URL: https://github.com/mbrsagor/microservices
- Owner: mbrsagor
- Created: 2020-09-27T07:45:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-07T14:55:04.000Z (almost 5 years ago)
- Last Synced: 2025-01-12T13:25:27.774Z (over 1 year ago)
- Topics: flask, flask-application, python3
- Language: Python
- Homepage:
- Size: 8.71 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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``