WEblog is a blogging website. Do give it a try for good experience.
- Frontend: HTML/CSS
- Backend: Django
- Fork it :
Get your own Fork/Copy of repository by clicking Fork
button right upper corner.
- Clone:
$ git clone https://github.com/kritikaparmar-programmer/WEblog.git
$ cd WEblog/blogproject
- Branching
$ git checkout -b [your_branch_name]
- Make Changes in Source Code
- Create a Virtual Environment
python3 -m venv env
-
Activate the Virtual Environment
- On Windows
env\Scripts\activate
- On Linux or MAC
source env/bin/activate
- On Windows
-
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
- Stage your Changes and Commit
# For adding/Staging Changes
$ git add .
# For Commiting Changes
$ git commit -m "<your commit message>"
- Push your Commit to Repo
$ git push origin <branch_name>