Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/earthinversion/mall_management_system
https://github.com/earthinversion/mall_management_system
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/earthinversion/mall_management_system
- Owner: earthinversion
- Created: 2024-04-06T19:28:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-06T19:56:35.000Z (10 months ago)
- Last Synced: 2024-04-06T20:28:59.075Z (10 months ago)
- Language: HTML
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mall Management System
```
mkdir world_trade_park_mall
cd world_trade_park_mall
python3 -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
pip install Flask Flask-SQLAlchemy
```## Application Structure
```
world_trade_park_mall/
app.py
models.py
config.py
extensions.py
/templates
index.html
add_purchase.html
purchase_records.html```