Simon Fortier dfeddce2e9 readme-draft
wip
2019-04-06 21:10:28 -04:00
2019-04-06 10:31:57 -04:00
2019-03-30 11:17:28 -04:00
2019-03-10 09:47:11 -04:00
2019-03-27 17:30:53 -04:00
2019-02-19 19:38:54 -05:00
2019-04-06 10:31:57 -04:00
2019-04-06 10:31:57 -04:00
2019-01-12 16:20:25 -05:00
2019-03-01 19:48:48 -05:00
2019-03-09 14:24:54 -05:00
2019-02-26 19:06:34 -05:00
2019-04-06 21:10:28 -04:00
2019-03-01 19:48:48 -05:00

gopherbadger-tag-do-not-edit CodeFactor Build Status

Fast task tracker with authentication, statistics and web frontend

Postgres setup

sudo su postgres
createuser task_tracker
createdb task_tracker
psql task_tracker
> 

Nginx Setup

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; # Change host/port if necessary
}

Running tests

cd test/
go test
Description
No description provided
Readme GPL-3.0 753 KiB
Languages
Go 53.3%
TypeScript 23.7%
HTML 16.5%
PLpgSQL 4.4%
CSS 1.2%
Other 0.9%