A web app to manage tasks with dependencies between them
Find a file
Emmanuel BENOîT 5110ded7e5
feat: support running using Docker Compose
This commit adds a Docker Compose file which will run the application
using docker. The application is fronted by Traefik, and runs using
PHP-fpm. nginx is used to accept queries from Traefik and relay them to
the PHP-fpm containers (Traefik doesn't support FastCGI directly).
Sessions are shared between the various PHP containers using memcached.

Part of this work is based on [this repo](https://github.com/wandersonwhcr/docker-nginx-php-fpm)
2025-01-05 21:09:27 +01:00
arse@9b03f05f5a chore: upgrade arse 2025-01-05 21:08:11 +01:00
database Also fixed database upgrade script 2016-01-04 11:57:02 +01:00
docker feat: support running using Docker Compose 2025-01-05 21:09:27 +01:00
includes Adding multiple dependencies 2016-01-17 00:40:01 +01:00
site Initial sub-tasks support 2012-02-10 09:20:35 +01:00
.gitignore feat: support running using Docker Compose 2025-01-05 21:09:27 +01:00
.gitmodules chore: migrating from GitHub 2024-07-18 21:47:14 +02:00
database.sql Initial sub-tasks support 2012-02-10 09:20:35 +01:00
README Some README updates 2016-01-01 23:35:34 +01:00

Requires PostgreSQL 9.0+

1) Copy/rename database/config-sample.sql to database/config.sql,
2) Set the web app's user name and the database's name in database/config.sql,
3) Run the database.sql script from psql,
4) Copy/rename includes/config-sample.inc.php to includes/config.inc.php,
5) Set user name / password in includes/config.inc.php,
6) Copy/rename site/.htaccess.sample to site/.htaccess,
7) Update the rewrite rules in site/.htaccess as necessary.

Ideally, only the site/ directory should be available through the web server.