• HTML
• CSS
• Vanilla Javascript
• Flask Backend
Fork the project and send a pull request. This repository is actively maintained.
The following commands should be done in your terminal/command prompt
If you are on Windows, run
sh windows-install.sh
or
bash windows-install.sh
If You are on Mac, run
sh mac-install.sh
or
bash mac-install.sh
After doing this command, the website should be running.
If neither of these commands worked for you, try the steps below.
clone the repository
git clone https://github.com/SalarC123/CSClubWebsite.git
set the FLASK_APP environment variable like this
export FLASK_APP=routes.py
switch to the src folder and activate the venv
MACOS
cd src
python3 -m venv venv
. venv/bin/activate
WINDOWS
cd src
py -3 -m venv venv
venv\Scripts\activate
pip3 install -r requirements.txt
flask run

