qna software thingy
Find a file
2025-03-15 03:15:45 -05:00
app turns out that didn't work 2025-03-15 03:15:45 -05:00
.gitignore
config.sample.ini Add ability to configure database port 2025-03-15 01:16:37 -05:00
LICENSE
README.md
requirements.txt turns out that didn't work 2025-03-15 03:15:45 -05:00
shell.nix turns out that didn't work 2025-03-15 03:15:45 -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