Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ansarimofid/udacity-catalog
Udacity FSND Project #4
https://github.com/ansarimofid/udacity-catalog
Last synced: 19 days ago
JSON representation
Udacity FSND Project #4
- Host: GitHub
- URL: https://github.com/ansarimofid/udacity-catalog
- Owner: ansarimofid
- Created: 2017-08-15T15:03:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-21T11:17:10.000Z (over 7 years ago)
- Last Synced: 2024-10-28T15:15:55.713Z (2 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Catalog App
It's a flask based app which shows Item stored in different categories.
It implements the CRUD in the app. Along with this it also uses third party authentication if someone want to make any changes to the item details or wants to add any items.
## Running the App
#### Step 1
* Install the dependencies
```Shell
pip install -r requirements.txt
```
#### Step 2
* Setting Environment variable to run the appRun
```Shell
export FLASK_APP=/Users/ansarimofid/PycharmProjects/catalog/catalog.py
```
```Shell
export FLASK_DEBUG=1
```
#### Step 3
Run the App
```Shell
flask run
```
* access the site at ```http://127.0.0.1:5000/```