Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 637 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 637 Bytes

Worxstr-Backend

Web API for Worxstr

Installation

Requirements

  1. Python virtual environment

    1. Create a new virtual environment
    python -m venv env
    1. Activate the environemnt
    source env/bin/activate
    1. Install packages
    pip install -r requirements.txt

Flask development server

  1. Ensure that the vue server is still running on port 8080

  2. Run the server

    1. Open a new terminal to the repository root directory
    2. Run flask
    FLASK_APP=application.py flask run