From 681a61a70e82365ced497a7a0a027fe3d0c4431b Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Wed, 24 Apr 2024 14:47:59 -0500 Subject: [PATCH] Update README --- README.md | 9 ++++++++- run.sh | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 run.sh diff --git a/README.md b/README.md index bf10c72..956dfd2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # computer_science_club -A website for Computer Science Club. +A website for Computer Science Club. It was made during a mini-hackathon. + +## setup +To setup the server environment, run ```python -m venv .``` in the root of the project. Then, execute ```. ./bin/activate``` and you should be in the virtual environment. Lastly, run ```pip install flask schoolopy``` to install all the dependencies. Now, exit using by running ```exit```. + +## running +To run the server, execute ```run.sh```. + diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..b8861ec --- /dev/null +++ b/run.sh @@ -0,0 +1,2 @@ +. ./bin/activate +flask --app main.py run -- 2.43.4