Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kylemh/lost
Flask web application w/o ORM for fast, large-scale inventory tracking using Postgres and Heroku.
https://github.com/kylemh/lost
apache flask full-stack linux postgresql web-app
Last synced: about 1 month ago
JSON representation
Flask web application w/o ORM for fast, large-scale inventory tracking using Postgres and Heroku.
- Host: GitHub
- URL: https://github.com/kylemh/lost
- Owner: kylemh
- License: mit
- Created: 2017-01-10T23:01:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-19T07:51:24.000Z (over 7 years ago)
- Last Synced: 2024-10-05T05:20:59.054Z (3 months ago)
- Topics: apache, flask, full-stack, linux, postgresql, web-app
- Language: Python
- Homepage: https://lost-app.herokuapp.com
- Size: 10.8 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LOST Inventory Tracker
[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
This is an inventory tracking Flask web application utilizing a Postgres database without an ORM. You can create users with specific roles, create facilities, create assets, dispose of assets, move assets around, and get a report detailing each asset's location.
## Table of Contents
- [Resources Used](#resources-used)
- [Install](#install)
- [Contents](#contents)
- [Contribute](#contribute)
- [License](#license)## Resources Used
https://www.cs.uoregon.edu/Classes/17W/cis322/
Web Development with Flask - Miguel Grinberg
## Install
This project uses [Flask](http://flask.pocoo.org/) and [Postgres](https://www.postgresql.org/).
To install, you must have [Virtual Environments](https://pypi.python.org/pypi/virtualenv) installed.
1. Clone repository.
2. Open terminal at top level of repository.
3. Create and activate your virtual environment.
4. `$ pip install -r requirements.txt`
5. Create a local postgres database instance.
6. `$ chmod u+x preflight.sh`
7. `$ ./preflight.sh `
8. `$ python3 run.py`## Contents
```
├── Procfile
├── README.md
├── app
│ ├── README.md
│ ├── __init__.py
│ ├── api.py
│ ├── helpers.py
│ ├── static
│ ├── templates
│ └── views
├── config.py
├── exports
│ ├── README.md
│ ├── assets.csv
│ ├── export_data.sh
│ ├── facilities.csv
│ ├── migrations.py
│ ├── transfers.csv
│ └── users.csv
├── imports
│ ├── data
│ └── import.py
├── preflight.sh
├── requirements.txt
├── run.py
├── runtime.txt
└── sql
└── create_tables.sql
```## Contribute
I don't have any plans to continue this project as it was exploratory in nature.
## License
[MIT](LICENSE) © Kyle Holmberg