- Laravel
-
Change directory to
server
cd server
-
Create
.env
filecp .env.example .env
-
Install dependencies
./vendor/bin/sail composer install
-
Generate key
./vendor/bin/sail artisan key:generate
-
Start the application with docker using sail
./vendor/bin/sail up
-
Run migration and seeder file
./vendor/bin/sail artisan migrate:fresh --seed
- Next.js with experimental app folder
-
Change directory to
app
cd app
-
Create
.env
filecp .env.example .env
-
Install dependencies
yarn install
-
Start the application
yarn dev