docspell service seems to work

just need to configure nginx as a reverse-proxy
This commit is contained in:
Khaïs COLIN 2024-08-23 09:57:21 +00:00
parent 7a0bc90d93
commit 57f9da1de8
4 changed files with 10 additions and 1 deletions

5
docspell-initdb.sql Normal file
View file

@ -0,0 +1,5 @@
create user docspell with password 'docspell' login createdb;
create schema docspell;
grant all privileges on all tables in schema docspell to docspell;
grant all privileges on all sequences in schema docspell to docspell;
create database DOCSPELL owner docspell;