https://github.com/kellpossible/gear-store-inventory
A proof-of-concept flask web application to manage an inventory of physical items
https://github.com/kellpossible/gear-store-inventory
Last synced: 11 months ago
JSON representation
A proof-of-concept flask web application to manage an inventory of physical items
- Host: GitHub
- URL: https://github.com/kellpossible/gear-store-inventory
- Owner: kellpossible
- License: mit
- Created: 2020-05-03T10:04:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T10:10:08.000Z (about 6 years ago)
- Last Synced: 2025-03-24T03:47:18.583Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 79.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gear Store Inventory
A [flask](https://flask.palletsprojects.com/) web application to manage an inventory of physical items, with data stored in a json file. associated image/binary files are stored separately.
**Warning: this repository contains some large files, still in the process of moving them to LFS or some other solution.**
This software was developed as a proof-of-concept to be used to manage [MUMC's](https://www.mumc.org.au/) ski gear inventory, and was used to do so for 1 year. It is currently in the process of being adapted to be more generic and capable of being used to manage any other similar kind of inventory.
Features:
- Easy to set up and host yourself, or use locally.
- Single human-readable file format.
- CSV file export.
- Columns can be sorted (using [sortable](https://github.com/HubSpot/sortable)).
- User defined categories.
## Screenshots



## Planned Upgrades
### Update 1
- [x] download inventory json button
- [x] download inventory csv button
- [ ] download inventory zip button (including images)
- [ ] serve from photo directory specified in json
- [ ] multiple inventories at once
- [ ] delete and upload image options in edit item page
- [x] upload images
- [ ] view backups
- [ ] support schema versioning and migrations
### Update 2
- [ ] resize image on upload
- [ ] create setup.py and have this be installed and run as a local command
- [x] command line options
- [ ] release to github
- [ ] new inventory page/dialog
## Running
### Dependencies
- Requires Python 3.
- See [requirements.txt](requirements.txt). These can be installed with `pip install -r requirements.txt` command.
### Command Line Arguments
```man
Gear Store Inventory
Usage:
main.py [-p ] [-a
] new
main.py [-p ] [-a ]
main.py (-h | --help)
Arguments:
a json file containing an existing inventory
an ip address of an interface on your computer
an available port number on your computer
Options:
-p port to host webserver on [default: 8090]
-a
address to host webserver on [default: 0.0.0.0]
Commands:
new command to create a new inventory
```