Skip to content

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
anpa6841 committed Jan 9, 2024
1 parent a9ab8e1 commit 17ae7fa
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## Create virtualenv
### Create virtualenv

- python3 -m venv myvenv
- source myvenv/bin/activate

## Install Dependencies
### Install Dependencies

- pip3 install -r requirements.txt

## Setup Database
### Setup Database

- export FLASK_APP=app

Expand All @@ -21,19 +21,19 @@

- User.query.all() // returns []```

## Run App
### Run App

- python3 app.py

## Run Selenium Tests:
### Run Selenium Tests:

- pytest -v

## To run in development mode:
### To run in development mode:

- flask run --reload

## On user registration, run the following commands to get the otp
### On user registration, run the following commands to get the otp

- flask shell

Expand All @@ -42,42 +42,42 @@
- User.query.all()[-1].otp


## Web App Screenshots
### Web App Screenshots


# Login
### Login

<img src="./screenshots/login.png" alt="drawing" width="400"/>

# Register
### Register

<img src="./screenshots/register.png" alt="drawing" width="400"/>

# Enter OTP
### Enter OTP

<img src="./screenshots/enter_otp.png" alt="drawing" width="400"/>


# Email Confirmed
### Email Confirmed

<img src="./screenshots/email_confirmed.png" alt="drawing" width="400"/>

# Products Dashboard
### Products Dashboard

<img src="./screenshots/all_products.png" alt="drawing" width="400"/>

# Filter Products View By Categories
### Filter Products View By Categories

<img src="./screenshots/filter_view_by_categories.png" alt="drawing" width="400"/>

# Search Products
### Search Products

<img src="./screenshots/search_products.png" alt="drawing" width="400"/>

# View Cart Items
### View Cart Items

<img src="./screenshots/view_cart.png" alt="drawing" width="400"/>

# Checkout
### Checkout

<img src="./screenshots/checkout.png" alt="drawing" width="400"/>

0 comments on commit 17ae7fa

Please sign in to comment.