The theme of our project idea is that every women should get their periods on time, should not miss their periods and get notified before so that they have a reminder, as many of us forget due to busy work schedule or any other means. It is benefited to get a reminder when we are travelling or in any important meetings or tasks.
- Frontend: Html,Css
- Backend: Django
- Version Control: Git and GitHub
- Hosting: Heroku
- Code Editor and tools: VS Code
Setup Steps
- Setup Virtual environment
$ python3 -m venv env
- Activate the virtual environment
$ source env/bin/activate
- Install dependencies using
$ pip install -r requirements.txt
- Make migrations using
$ python manage.py makemigrations
- Migrate Database
$ python manage.py migrate
- Create a superuser
$ python manage.py createsuperuser
- Run server using
$ python manage.py runserver