Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 713 Bytes

File metadata and controls

38 lines (27 loc) · 713 Bytes

Supersaver

A smarter way to manage your savings

Frontend Prerequisites

  • pyenv
  • Python 3.11.4
  • Flask

How to run Frontend for development

  1. Install pyenv

  2. Install Python 3.11.4

    pyenv install 3.11.4
    
  3. Install Flask

    pip install Flask
    
  4. Clone this repository

  5. Change directory to supersaver and set local Python version to 3.11.4

cd supersaver 
pyenv local 3.11.4
  1. Run tailwindcss command to build css as you develop npx tailwindcss -i ./static/src/input.css -o ./static/dist/css/output.css --watch
  2. Run app Flask run

The frontend app will now be accessible at http://localhost:5000.