TheOpenResumeProject / webapp

A tool to get your resume converted to conform to the OpenResume standard.
MIT License
0 stars 0 forks source link

Add a backend #2

Closed salekinsirajus closed 2 months ago

salekinsirajus commented 3 months ago

We need to implement a lightweight backend to be able to continue development, as well as the upcoming features.

Steps

  1. create a virtual environment called .venv for Python3. (DO NOT COMMIT these to the repository). Learn more about virtual environments here and Corey Schafer tutorial
  2. create a file called requirements.txt, add the following contents:
    flask==3.0.3
  3. Activate the virtual environment by running source .venv/bin/activate
  4. Run pip install -r requirements.txt to download the required packages.
  5. Follow the quickstart tutorial here to build an initial flask app.
  6. Render index.html and editor.html to be accessed via / (root) and /editor endpoints, respectively. See examples here
salekinsirajus commented 2 months ago

addressed in #3