A construction work planner web application following the Software Design Document (SDD).
- PHP 8.3+
- Node.js & npm
- Composer
- MySQL 8+
-
Copy .env.example to .env and configure database credentials:
cp .env.example .env
-
Install PHP dependencies:
composer install
-
Install JavaScript dependencies:
npm install
-
Build assets:
npm run build
-
Set up a web server to serve the public directory.
To run Vite dev server (for hot reloading):
npm run dev