From 7319816b7c712cd16d6e83bcd617c95943b79be6 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Thu, 29 Apr 2021 20:43:35 +0300 Subject: CRUD reports --- etc/readme.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 etc/readme.md (limited to 'etc') 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 +``` + -- cgit v1.2.1