Available routes are
sveltekit with ssg adapter-static for client rendering site https://svelte.dev/
flightphp , php micro framework allowing multiple request type as db pdo connection, simple routing , file uploads , etc.. https://docs.flightphp.com/en/v3/
php-crud-api dynamic db orm api server as another api endpoint https://github.com/mevdschee/php-crud-api
git clone https://github.com/vmakre/sveltekit2_php_monorepo .
npm i
composer update
2. Setup db connection
#### **`/src/server/routes/index.php`**
``` php
// db connect mysql
$host='localhost';
$user='root';
$pass='';
$db='tablename';