Skip to content
Snippets Groups Projects
Commit cf6d3ece authored by Daniel Myrén's avatar Daniel Myrén
Browse files

Created a simple script to create a virtual environement and requirements for the server

parent 615a0094
Branches
No related tags found
No related merge requests found
blinker==1.7.0
click==8.1.7
Flask==3.0.2
importlib_metadata==7.1.0
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1
zipp==3.18.1
#!/bin/bash
# Allow execution by running: chmod u+x setup.sh
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment