Skip to content
/ SeiWeb Public

The template of webstore built by Django framework

Notifications You must be signed in to change notification settings

LongSei/SeiWeb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SeiWeb

Description

The template of blog webpage built by Django framework

  • This project just created for learning purpose

Features:

  • Authorization System
  • Admin system
  • Order system
  • Order Tracking System

Setup

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/