Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 1.02 KB

README.md

File metadata and controls

29 lines (26 loc) · 1.02 KB

AutoCV

The backend of the app is built using Flask, a lightweight microframework for standing up backends quickly.

Compatability

Platform Initialization Invoke GET /resume Invoke GET /cv Invoke /copy
Windows ✔️ ✔️ ✔️ ✔️
MacOS ✔️ ✔️ ✔️ ✔️
Linux ✔️ ✔️ ✔️ ✔️

Installation

Run the following commands in the src/backend directory:

Windows

pip install virtualenv
virtualenv ENV_NAME
ENV_NAME\Scripts\activate
pip install -r requirements
python server.py

OSX/Linux

pip install virtualenv
virtualenv ENV_NAME
source ENV_NAME/bin/activate
pip install -r requirements
python server.py