An open API service indexing awesome lists of open source software.

https://github.com/akashgiricse/online-shop

Online Shop using Djagno
https://github.com/akashgiricse/online-shop

django online-shop python python3 shopping

Last synced: 3 months ago
JSON representation

Online Shop using Djagno

Awesome Lists containing this project

README

          

# Online shop
An online shop webapp powered by Django

## How to use

### 1. Clone this repository
```commandline
git clone https://github.com/akashgiricse/online-shop
```
### 2. Inside *online-shop* directory run the following command to install `pipenv`
```commandline
pip3 install pipenv
```
### 3. Activate `pipenv` virtual environment
```commandline
pipenv shell
```
### 4. Install packages
```commandline
pipenv install
```
### 5. Inside outer `myshop` directory, rename the file `.env.example` to `.env`

### 6. Run database migrations (inside outer `myshop` directory)
```commandline
python manage.py migrate
```
### 7. Create superuser
```commandline
python manage.py createsuperuser
```
### 8. Run development server
```commandline
python manage.py runserver
```
## Contribute
- Issue tracker: [Issues](https://github.com/akashgiricse/online-shop/issues)

## Contributors
- [Akash Giri](https://github.com/akashgiricse/)