Python Flask MongoDB[https://www.mongodb.com/] pymongo
cd backend
python3 -m venv venv
source venv/bin/activate
pip install flask pymongo flask-cors bcrypt
brew services start mongodb-community@6.0
python parser.py
|| python3 parser.py
flask --app app run
|| python3 app.py
Open a new terminal
cd frontend
npm install
npm run serve
- Auth on frontend and Backend + Protected Routes
- Dockerize the app
- (Front) Add an option on frontend to choose if the user wants to see its own timezone or the timezone of the user in the list.
- Improve componentization, avoid repeat some code as I did for the Tags on the frontend.
- There is a bug on users/:user_name. When you edit an user from there data is not rerrendered as it should be. I would like to fix this.
- Better Documentation
- Setup .env file for better code management