Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

neanias/proj-webapp

Repository files navigation

Honours Project - Web Frontend

Requirements

Installation

Python

I would recommend having virtualenv installed to keep versions separate from one another.

To install the Python dependencies, run

pip install -r requirements.txt

JavaScript

To install the web dependencies, run

yarn install

To build assets during development, run

yarn devBuild

To build assets for production, run

yarn build

Running

You must build the assets before you run the server for the first time!

To serve the website in development, run

FLASK_DEBUG=1 FLASK_APP=app.py flask run