https://github.com/ngc/3005finalproject
https://github.com/ngc/3005finalproject
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ngc/3005finalproject
- Owner: ngc
- Created: 2024-04-06T22:06:55.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T03:33:35.000Z (about 2 years ago)
- Last Synced: 2026-06-13T13:34:00.695Z (4 days 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
```