Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months 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 (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-30T17:26:12.000Z (5 months ago)
- Last Synced: 2024-10-11T07:04:51.693Z (2 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: 5
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: Support/__init__.py
Awesome Lists containing this project
README
# GreenCart
[![forthebadge made-with-python](https://forthebadge.com/images/badges/made-with-python.svg)](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.jsonAdmin-Email:- [email protected]
Admin-Password:- Admin@123TestUser-Email:- [email protected]
TestUser-Password:- Test@123
```