https://github.com/yashikajotwani12/pcodlive
This is a blog website has been made through django, where women with PCOD/PCOS can share their thoughts and and also can read about other's experiences.
https://github.com/yashikajotwani12/pcodlive
blog django share website
Last synced: 28 days ago
JSON representation
This is a blog website has been made through django, where women with PCOD/PCOS can share their thoughts and and also can read about other's experiences.
- Host: GitHub
- URL: https://github.com/yashikajotwani12/pcodlive
- Owner: yashikajotwani12
- Created: 2021-06-09T16:23:40.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-02T03:32:44.000Z (about 5 years ago)
- Last Synced: 2025-02-27T04:18:39.222Z (over 1 year ago)
- Topics: blog, django, share, website
- Language: HTML
- Homepage: https://pcodlive.herokuapp.com/blog/
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Pcodlive
## Theme:
Blog Website, where you can write blog, edit blog, comment, like, sign up, login, logout and much more.
## 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
```