luckdeluxe / hardware-store

Online store web application. Using Django in the backend with Bootstrap and Javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Store

Hardware [Store]

Starting 🚀

These instructions will allow you to get a copy of the project running on your local machine for development and testing purposes.

Look Deployment to know how to deploy the project.

Pre requirements

A series of step-by-step examples that tells you what to run to get a development environment running

Clone the repository

git clone https://github.com/luckdeluxe/hardware-store.git && cd store

Create a virtual Python environment:

python3 -m venv .venv

Activate the virtual environment

sorce .venv/bin/activate

Installation 🔧

What things do you need to install the software and how to install them

You can install the requirements.txt file recursively

pip install requirements.txt

If you have any errors in the above way you can install it manually

pip install [dependency==version]
asgiref==3.4.1
astroid==2.6.2
Django==3.2.5
isort==5.9.2
lazy-object-proxy==1.6.0
mccabe==0.6.1
Pillow==8.3.1
psycopg2-binary==2.9.1
pylint==2.9.3
pylint-django==2.4.4
pylint-plugin-utils==0.6
pytz==2021.1
sqlparse==0.4.1
toml==0.10.2
wrapt==1.12.1

Running the tests ⚙️

Create database from models

python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver

About

Online store web application. Using Django in the backend with Bootstrap and Javascript

License:MIT License


Languages

Language:Python 66.5%Language:HTML 31.2%Language:JavaScript 1.8%Language:CSS 0.5%