Bloggitt is a blogging website that allows users to post their thoughts and knowledge with others.
- Frontend: HTML/CSS/Bootstrap
- Backend: Django
Kharagpur Winter of Code is a 5-week long online program for students who are new to open source software development. The program not only helps students to get involved in open source, but also prepares them for many open source summer programs; Google Summer of Code being one of them.
NWoC (NJACK Winter of Code) is a program by NJACK (The Official Computer Science Club of IIT Patna) that helps students understand the paradigm of Open Source contribution and gives them real world software development experience.
- Fork and Clone the repository using-
git clone https://github.com/diyajaiswal11/Bloggitt.git
- Create a Branch-
git checkout -b <branch_name>
- Create virtual environment-
python -m venv env
env\Scripts\activate
- Install dependencies using-
pip install -r requirements.txt
If you have python2 and python3 installed you need to specify python3 by using command:
python3 -m pip install -r requirements.txt
- Headover to Project Directory-
cd bloggitt
- Make migrations using-
python manage.py makemigrations
If you have python2 and python3 installed you need to specify python3 by using command:
python3 manage.py makemigrations
- Migrate Database-
python manage.py migrate
- Create a superuser-
python manage.py createsuperuser
- Run server using-
python manage.py runserver
- Push Changes-
git add .
git commit -m "<your commit message>"
git push --set-upstream origin <branch_name>
Diya Jaiswal |
Made with ❤️ by Diya Jaiswal