LOST
1.0.0
이것은 ORM 없이 Postgres 데이터베이스를 활용하는 재고 추적 Flask 웹 애플리케이션입니다. 특정 역할을 가진 사용자를 생성하고, 시설을 생성하고, 자산을 생성하고, 자산을 처리하고, 자산을 이동하고, 각 자산의 위치를 자세히 설명하는 보고서를 얻을 수 있습니다.
https://www.cs.uoregon.edu/Classes/17W/cis322/
Flask를 사용한 웹 개발 - Miguel Grinberg
이 프로젝트에서는 Flask와 Postgres를 사용합니다.
설치하려면 가상 환경이 설치되어 있어야 합니다.
$ pip install -r requirements.txt
$ chmod u+x preflight.sh
$ ./preflight.sh <db_name>
$ python3 run.py
├── 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
이 프로젝트는 본질적으로 탐구적인 것이기 때문에 계속할 계획이 없습니다.
MIT © 카일 홈버그