qna software thingy
Find a file
2025-03-12 22:39:18 -05:00
app Change names to make more sense 2025-03-11 10:15:17 -05:00
.gitignore Start config work 2025-03-10 01:25:36 -05:00
config.sample.ini more config worl 2025-03-10 21:22:08 -05:00
LICENSE Initial commit 2025-03-06 23:30:38 -06:00
README.md Start documentation work 2025-03-12 21:30:00 -05:00
requirements.txt Start DB work 2025-03-12 21:09:31 -05:00
shell.nix add nix shell thingy 2025-03-12 22:39:18 -05:00

nyxask

qna software thingy

Setup

  1. Create the database:
CREATE DATABASE nyxask WITH ENCODING = 'UTF8';
CREATE USER nyxask WITH ENCRYPTED PASSWORD 'nyxask';
GRANT ALL PRIVILEGES ON DATABASE nyxask TO nyxask;
ALTER DATABASE nyxask OWNER TO nyxask;
\q
  1. Create the venv:
python -m venv ./.venv
  1. Install requirements:
pip install -r requirements.txt
  1. Run the app:
python app/app.py