An open API service indexing awesome lists of open source software.

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.

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
```