From 307cc6bee07b6d6411c6b5b5204171c8df688c32 Mon Sep 17 00:00:00 2001 From: mst Date: Sat, 1 Mar 2025 03:14:31 +0300 Subject: [PATCH] add database creation instructions --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 830fd3f..d79faf1 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,14 @@ Go into the cloned repository, create a virtual environment and activate it: After that, install required packages: ```pip install -r requirements.txt``` +Then, create the database and the user for CatAsk: +``` sql +CREATE USER '' WITH PASSWORD ""; +``` +``` sql +CREATE DATABASE "" OWNER ''; +``` + ### Shared hosting-specific If your shared hosting provider supports [WSGI](https://w.wiki/_vTN2), [FastCGI](https://w.wiki/9EeQ), or something similar, use it (technically any CGI protocol could work)