The template of blog webpage built by Django framework
- This project just created for learning purpose
- Authorization System
- Admin system
- Order system
- Order Tracking System
The first thing to do is to clone the repository:
$ git clone https://github.com/LongSei/SeiWeb.git
Add the app
python3 manage.py makemigrations
python3 manage.py migrate
Create the database
python3 manage.py makemigrations
python3 manage.py migrate
- This database stores all your data (eg: user, post)
You can create the superuser to manage the project
python3 manage.py createsuperuser
Then install the dependencies:
$ pip3 install -r requirements.txt
Run server
python3 manage.py runserver
And navigate to http://127.0.0.1:8000/