Create, store, and run Python scripts from a simple web interface.
- Clone the project from GitHub
$> git clone https://github.com/dustinkredmond/PyScriptRunner
- Change into the project directory
$> cd ./PyScriptRunner
- Create a virtual environment to run the project
$> python -m venv ./venv
- Activate the virtual environment
$> ./venv/scripts/activate
- Install the project requirements
$> python -m pip install -r ./requirements.txt
- Run the development server
$> python -m flask run