## 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 ```