aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-04-29 20:43:35 +0300
committerAqua-sama <aqua@iserlohn-fortress.net>2021-04-29 20:43:35 +0300
commit7319816b7c712cd16d6e83bcd617c95943b79be6 (patch)
treeae5de7c1e2a4387c50ee1df53b24b0021be5c591 /etc
parentFinish user management (diff)
downloadbugtracker-7319816b7c712cd16d6e83bcd617c95943b79be6.tar.xz
CRUD reports
Diffstat (limited to 'etc')
-rw-r--r--etc/readme.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/etc/readme.md b/etc/readme.md
new file mode 100644
index 0000000..2d01f05
--- /dev/null
+++ b/etc/readme.md
@@ -0,0 +1,25 @@
+## How to run the services manually
+
+### php-fpm
+```sh
+php-fpm --fpm-config php/php-fpm.conf
+```
+
+### nginx
+```sh
+nginx -p nginx/ -c nginx.conf
+```
+
+### postgresql
+```sh
+# setup
+initdb -D /path/to/postgres.d
+createdb -h localhost -p 5432 -U $(whoami) bugtracker
+
+# starting
+pg_ctl -D postgres/ -l logfile start
+
+# connecting
+psql -h localhost bugtracker
+```
+