Implements the schedule module for COMPASS construction PM: - D1/Drizzle schema: tasks, dependencies, phases tables - frappe-gantt integration for interactive timeline view - Critical path analysis (forward/backward pass, float calc) - Dependency validation with cycle detection - Business day calculations (skip weekends/holidays) - Date propagation engine for cascading schedule changes - Task CRUD with phase assignment and progress tracking - Dependency management (FS/FF/SS/SF with lag support) - Dual view: sortable list view + gantt chart view Also includes full Next.js app scaffold with dashboard, shadcn/ui components, and Cloudflare Workers deployment config.
10 lines
396 B
TypeScript
Executable File
10 lines
396 B
TypeScript
Executable File
import { defineCloudflareConfig } from "@opennextjs/cloudflare";
|
|
|
|
export default defineCloudflareConfig({
|
|
// Uncomment to enable R2 cache,
|
|
// It should be imported as:
|
|
// `import r2IncrementalCache from "@opennextjs/cloudflare/overrides/incremental-cache/r2-incremental-cache";`
|
|
// See https://opennext.js.org/cloudflare/caching for more details
|
|
// incrementalCache: r2IncrementalCache,
|
|
});
|