https://github.com/yashsahsani/greencart
Ecommerce Website to Sell Green Items
https://github.com/yashsahsani/greencart
css css3 django django-application django-framework django-project django-rest-framework django2 forms forms-validation html python python3 render stripe stripe-payments tailwindcss tailwindui ui ui-design
Last synced: about 12 hours ago
JSON representation
Ecommerce Website to Sell Green Items
- Host: GitHub
- URL: https://github.com/yashsahsani/greencart
- Owner: YashSahsani
- Created: 2024-06-10T15:06:22.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-13T03:38:04.000Z (about 1 year ago)
- Last Synced: 2025-01-31T23:04:53.178Z (9 months ago)
- Topics: css, css3, django, django-application, django-framework, django-project, django-rest-framework, django2, forms, forms-validation, html, python, python3, render, stripe, stripe-payments, tailwindcss, tailwindui, ui, ui-design
- Language: HTML
- Homepage: https://greencart-6692.onrender.com
- Size: 57.7 MB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: Support/__init__.py
Awesome Lists containing this project
README
# GreenCart
[](https://www.python.org/)
## Prerequisites
- Python
- Git
## Installation
```bash
$ git clone https://github.com/YashSahsani/GreenCart.git && cd GreenCart
```
### Install Virtual Env
```bash
$ pip install virtualenv
$ virtualenv venv
```
### OR
```bash
$ python3 -m venv venv # create virtual enviroment
```
### For Mac/ Linux
```bash
$ source venv/bin/activate # activate virtual env for Mac and Linux
$ pip install -r requirements.txt
```
### For Windows
```bash
$ .\venv\bin\activate # activate virtual env for Windows
$ .\venv\Scripts\activate
$ pip install -r requirements.txt
```
### Migrations
```bash
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
```
### For Adding initial data
```bash
$ python manage.py loaddata data.json
Admin-Email:- admin@greencart.com
Admin-Password:- Admin@123
TestUser-Email:- test@greencart.com
TestUser-Password:- Test@123
```