CSCI 497T with Professor Elglaly
- Robin Balatbat
- Ian Cullum
- Sam Dobesh
- Nick Harang
- Kale Kurtzhall
Requires Python 3 and Flask.
Install flask and Flask-Reuploaded with pip (or conda) in a virtual environment.
Note that for Conda, you will have to install pip to the Conda environment, and then call pip from the environments bin folder. The path to the folder anaconda
may be different on your system, but it installs to your home directory by default.
python3 -m venv env
source env/bin/activate
pip install flask Flask-Reuploaded moviepy
conda create --name env
conda activate env
conda install pip
~/anaconda/envs/env/bin/pip install flask Flask-Reuploaded moviepy
py -3 -m venv venv
venv\Scripts\activate
pip install flask Flask-Reuploaded moviepy
The following scripts will run AVE locally on your computer in debug mode.
./run
./run.cmd
./run.ps1
This runs the app on port 8080 for external access. Intended for testing with remote participants
./run_live
./run_live.cmd
./run_live.ps1
This script exists to clear out the upload folder.
./clean
Run each code line from the script associated with your terminal.
If your terminal scripting language is not supported you can do the following.
Create two environment variables, FLASK_ENV
and FLASK_APP
.
Set FLASK_ENV
to development
and FLASK_APP
to main
.
Then start the website locally with flask run
.