Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngc/3005finalproject
https://github.com/ngc/3005finalproject
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ngc/3005finalproject
- Owner: ngc
- Created: 2024-04-06T22:06:55.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-04-14T03:33:35.000Z (7 months ago)
- Last Synced: 2024-04-16T20:28:14.761Z (7 months ago)
- Language: Python
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
Note this assumes you already have Python 3.12 and postgres installed.
```bash
pip install -r requirements.txt
```# Setup
This also assumes you've already created a database in postgres with a user who has full access to it.
Create a `.env` file in the root directory and add the following:```bash
DB_NAME = "your_db_name"
DB_USER = "your_db_user"
DB_PASSWORD = "your_db_password"
DB_HOST = "localhost"
DB_PORT = "5432"
```# Run
```bash
python main.py
```