Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 881 Bytes

README.md

File metadata and controls

56 lines (36 loc) · 881 Bytes

Patterns

An ecommerce project made from scratch for selling surface patterns.

ss1

ss2

Quickstart

Create a virtual environment

Example using virtualenv

Create the env

virtualenv env

Activate the env

Windows

env\scripts\activate

Unix

source env/bin/activate

Install packages

pip install -r requirements.txt

Migrate Schema

python manage.py makemigrations && python manage.py migrate

Build Frontend

cd frontend && npm run build

Start Dev Server

python manage.py runserver