mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-04 07:52:59 +00:00
1.6 KiB
1.6 KiB
Documentation
Installation (Docker)
-
(Optional) Tweak configuration file
vim config.yml
-
docker-compose up
Installation (Linux)
- You have a postgres daemon listening for connections on
localhost:5432
. - You have a working installation of go, nodejs and nginx
-
Initialize the database
sudo su postgres createuser task_tracker createdb task_tracker psql task_tracker > ALTER USER "task_tracker" WITH PASSWORD 'task_tracker';
-
Acquire binaries
API
go get -d github.com/simon987/task_tracker/... cd $GOPATH/src/github.com/simon987/task_tracker/main go build -o tt_api .
UI
git clone https://github.com/simon987/task_tracker cd task_tracker/web/angular npm install ./node_modules/\@angular/cli/bin/ng build --prod --optimization
-
Setup web server
Move ./dist/ to /path/to/webroot/, start ./tt_api
index index.html; root /path/to/webroot; location / { try_files $uri $uri/ /index.html; } location ~ /api(.*)$ { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_pass http://127.0.0.1:3010$1?$args; }
Getting started
Register a Manager account from the /login page. The first account will automatically be given tracker admin permissions.
Follow the instructions in the index page to create a project.
API documentation
See API_DOCS.md