Start documentation work

This commit is contained in:
Nyx 2025-03-12 21:30:00 -05:00
parent ccbbbffe6f
commit 8258e5ab0a

View file

@ -1,3 +1,28 @@
# nyxask # nyxask
qna software thingy qna software thingy
## Setup
1. Create the database:
```sql
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
```
2. Create the venv:
```shell
python -m venv ./.venv
```
3. Install requirements:
```shell
pip install -r requirements.txt
```
4. Run the app:
```shell
python app/app.py
```