Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ gantt-sapper Public archive

dhtmlx-gantt integrated with svelte + sapper

Notifications You must be signed in to change notification settings

ezracelli/gantt-sapper

Repository files navigation

gantt-sapper

dhtmlx-gantt integrated with svelte + sapper

database setup

See the official dhtmlxGantt tutorial for more details

CREATE TABLE `gantt_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `source` int(11) NOT NULL,
  `target` int(11) NOT NULL,
  `type` varchar(1) NOT NULL,
  `sortorder` int(11) NOT NULL,
  PRIMARY KEY (`id`)
);

CREATE TABLE `gantt_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `text` varchar(255) NOT NULL,
  `start_date` datetime NOT NULL,
  `duration` int(11) NOT NULL,
  `progress` float NOT NULL,
  `parent` int(11) NOT NULL,
  PRIMARY KEY (`id`)
);

.env with defaults

# api variables

API_PASSWORD=

# mysql variables

MYSQL_DATABASE=
MYSQL_HOST=127.0.0.1
MYSQL_PASSWORD=
MYSQL_PORT=3306
MYSQL_USER=

# port

PORT=3000

# redis variables

REDIS_HOST=127.0.0.1
REDIS_PORT=6379

# session variables

SESSION_SECRET=keyboard cat

About

dhtmlx-gantt integrated with svelte + sapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published