- Barbu Alexandru Daniel
- Oprea Horatiu
This is a web app designed to help students get answers faster from the university. The app will:
- Show Frequently Asked Questions;
- Send requests templates to be filled out;
- Send and receive official documents at a click of a button;
NOTE!! Use WSL, nothing else!! 🚀
- Clone the repo.
- Make the virual enviroment using
python3 -m venv venv. - Run
source venv/bin/activate. - Then run
pip install -r requirements.txt.
- Make the virual enviroment using
- Make a branch with your name using
git checkout -b <new-branch-name>. - Write your code.
- Add all the files that are modified using
git add <path-to-file>. - Commit changes to your repo:
git commit -sm "Write some message here". - Once you are finished run
git push origin <your-branch>. - You will let me merge the branch.
NOTE!! Only one must do the merging!! NOTE!! If you accidentally added files, but not on a separate branch use
git resetcommand, create the branch then usegit add <path-to-file>.
- Occasionally update your local project using
git fetch.
NOTE!! Updating is not optional, is MANDATORY. 😑
- Merge the upstream changes into your branch.
git checkout <your-branch>
git merge upstream/main- You may have some new changes in your project now, push them on your fork.
git push origin <your-branch>Set up those enviromen variables:
export FLASK_APP=project
export FLASK_DEBUG=1And then run
flask run