Skip to content

HananeOB/DjangoSimpleBlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BlogProject

How to set up

Manual setup

Firstly, create a new directory and change to it:

mkdir blog-django && cd blog-django

Then, clone this repository to the current directory:

git clone https://github.com/HananeOB/BlogProject .

The database used for this project is SQLite.

Next, set up a virtual environment and activate it:

python -m venv env && source env/bin/activate

Install required packages:

pip3 install -r requirements.txt

Next, perform migration:

python manage.py migrate 

The setup is complete. Run a local server with

python manage.py runserver 

The blog should be available at localhost:8000.

The admin should be available at localhost:8000/admin.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published