/falcon

Primary LanguagePython

falcon

falcon is a simple key value data store mock up using the Falcon micro framework.

Start Virtual Environment

Assuming you have python 3:

Mac instructions:

cd falcon
python3 -m venv venv
. venv/bin/activate

Windows instructions

cd falcon
py -3 -m venv venv
venv\Scripts\activate

Install Dependencies

To install all of the dependencies found on requirements.txt run the following in your terminal:

pip3 install -r requirements.txt 

Start Development Server

To start the gunicorn server run the following in your terminal:

cd kVal
gunicorn --reload index:app

(Note the use of the --reload option is to tell Gunicorn to reload the app whenever its code changes.)