qna software thingy
Find a file
2025-03-13 00:20:56 -05:00
app make it cuter 2025-03-13 00:20:56 -05:00
.gitignore Start config work 2025-03-10 01:25:36 -05:00
config.sample.ini A ton more DB work 2025-03-12 22:47:50 -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 A ton more DB work 2025-03-12 22:47:50 -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