Skip to content

A base project for anyone who wants to start building RESTful APIs with Flask.

Notifications You must be signed in to change notification settings

yashrahurikar23/boilerplate-flask-restful

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-RESTful Project

This is a Flask project with Flask-RESTful integration to quickly start building RESTful APIs.

Author: Vedprakash Upraity GitHub

Getting started

These instructions will get you a copy of this flask project up and running on your local machine for development and testing purposes.

System Requirements

  1. Python 3.6+
  2. virtualenv 15.1.0

Dependencies

  1. Flask 1.1.1
  2. Flask-RESTful 0.3.7
  3. Python Decouple 3.1

Setup Virtual Environment and install dependencies

# 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

Environment configuration setup

# Move into the settings directory

cd <project_directory>/settings

# Create symbolic link for the environment configuration
ln -s settings_uat.ini settings.ini

Run the project

$ python server.py

About

A base project for anyone who wants to start building RESTful APIs with Flask.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages