This is a Flask project with Flask-RESTful integration to quickly start building RESTful APIs.
Author: Vedprakash Upraity GitHub
These instructions will get you a copy of this flask project up and running on your local machine for development and testing purposes.
- Python 3.6+
- virtualenv 15.1.0
- Flask 1.1.1
- Flask-RESTful 0.3.7
- Python Decouple 3.1
# Install virtualenv
sudo apt install -y virtualenv
# Create Virtual Environment
virtualenv -p $(which python3.7) .venv
# Activate Virtual Environment
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Move into the settings directory
cd <project_directory>/settings
# Create symbolic link for the environment configuration
ln -s settings_uat.ini settings.ini
$ python server.py