aboutsummaryrefslogtreecommitdiff
path: root/etc/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'etc/readme.md')
-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
+```
+