aboutsummaryrefslogtreecommitdiff
path: root/usage.md
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 /usage.md
parentFinish user management (diff)
downloadbugtracker-7319816b7c712cd16d6e83bcd617c95943b79be6.tar.xz
CRUD reports
Diffstat (limited to 'usage.md')
-rw-r--r--usage.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/usage.md b/usage.md
deleted file mode 100644
index 1d25ff9..0000000
--- a/usage.md
+++ /dev/null
@@ -1,19 +0,0 @@
-## Starting services
-
-```sh
-php-fpm --fpm-config php/php-fpm.conf
-nginx -p nginx/ -c nginx.conf
-```
-
-## postgresql
-### setup
-```sh
-$ initdb -D /path/to/postgres.d
-$ createdb -h localhost -p 5432 -U red bugtracker
-
-# starting
-pg_ctl -D /home/red/etc/postgres/ -l logfile start
-
-# connecting
-psql -h localhost bugtracker
-```