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.gitAdd the app
python3 manage.py makemigrations
python3 manage.py migrateCreate 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 createsuperuserThen install the dependencies:
$ pip3 install -r requirements.txtRun server
python3 manage.py runserverAnd navigate to http://127.0.0.1:8000/