Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yashikajotwani12/periodsdatereminder
PeriodsDateReminder is a website where you can add your last period data so as to get an email automatically for the next months as a reminder.
https://github.com/yashikajotwani12/periodsdatereminder
automatic django reminder webapp
Last synced: 19 days ago
JSON representation
PeriodsDateReminder is a website where you can add your last period data so as to get an email automatically for the next months as a reminder.
- Host: GitHub
- URL: https://github.com/yashikajotwani12/periodsdatereminder
- Owner: yashikajotwani12
- Created: 2021-06-17T10:23:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-02T04:44:02.000Z (over 3 years ago)
- Last Synced: 2024-11-11T16:41:45.665Z (3 months ago)
- Topics: automatic, django, reminder, webapp
- Language: JavaScript
- Homepage: https://remindmemyperiods.herokuapp.com/
- Size: 660 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PeriodsDateReminder
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) ![Maintenance](https://img.shields.io/maintenance/yes/2021)
## Theme:
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.## Tech Stack:
- **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
```