Skip to main content
Version: 1.x

Create Lunox App

Use degit to copy Lunox app skeleton and start build your application with Lunox Framework. For this example we will use svelte preset.

# init lunox project
npx degit kodepandai/lunox#svelte my-lunox-app

# install the dependencies
cd my-lunox-app
pnpm install
note

for react preset replace first command with this

npx degit kodepandai/lunox#react my-lunox-app

Copy environment example file

cp .env.example .env

Compile the project for the first time, this is required for us to use artisan command.

pnpm build

Generate key for first time using artisan command

pnpm artisan key:generate

Done, you are ready to use Lunox framework 😃