A quick project I'm developping with the Tapirus Primus to get myself in the groove and make an actual project.
On June 27th, have a simple website where you have a button and a counter. When you press the button, it should update the counter for every single client.
- Backend in Python/Flask
- Frontend in JS/Angular
- Using a git repository with atomic commits
- Using a virtual environemnt for python
- Document all code
- Go into backend/
- Create a virtual environemnt (
python -m virtualenv .env) - Launch the virtual environemnt (
source .env/bin/activate) - Install the python packages (
pip install -r requirements.txt) - Launch the server (
python app.py)
- Go into Frontend
- Launch the webserver (
python -m http.server)