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
- Host: GitHub
- URL: https://github.com/akashgiricse/online-shop
- Owner: akashgiricse
- Created: 2018-12-09T05:45:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-24T17:27:18.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T09:49:25.407Z (6 months ago)
- Topics: django, online-shop, python, python3, shopping
- Language: Python
- Homepage:
- Size: 158 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/)