Skip to content

docs: missing step on installation #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions resources/views/docs/1/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ the NPM dependencies.
**Whenever you set up NativePHP on a new machine or in CI, you should run the installer to make sure all the
necessary dependencies are in place to build your application.**

## Create the database

```shell
php artisan native:migrate
```

NativePHP applications use SQLite as a driver for caching and queuing. This command will create the `nativephp.sqlite` file in the `database` directory and migrate the necessary database for your application to run.

## Start the development server

**Heads up!** Before starting your app in a native context, try running it in the browser. You may bump into exceptions
Expand Down