Skip to content

Commit

Permalink
Updated getting started to match new app creation flow.
Browse files Browse the repository at this point in the history
  • Loading branch information
michielvandergeest committed Feb 2, 2024
1 parent 6780894 commit 0efab7b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,33 @@ To begin with Blits, follow these simple steps to set up your development enviro

1. Open your terminal or command prompt.

2. Run the following command and follow the interactive prompt takes you through a series of steps and choices to create a new Lightning 3 App project:
2. Run the following command to start a new Blits Lightning 3 App project:

```bash
npx @lightningjs/blits@latest
```

This will generate the necessary boilerplate code in the folder you have specified (default is`my_lightning3_app`) for you to start building your own Lightning 3 App.
You will be guide through a few short questions, to generate a new project with all the boilerplate code you need to start building your own Lightning 3 App.

3. Navigate to the newly created project directory and install the project dependencies:

```bash
cd my_lightning3_app
cd my_blits_app
npm install
```

### Running Your App

1. After installing the dependencies, you can start your development server by running:
4. After installing the dependencies, you can start your development server by running:

```bash
npm run dev
```

This command will create an application bundle and launch a development server using Vite.

2. Once the server is up and running, open your web browser and navigate to the URL displayed in the console. Congratulations! You now have your brand new Lightning 3 App up and running.
2. Once the server is up and running, open your web browser and navigate to the URL displayed in the console. Congratulations! You now have your brand new Blits Lightning 3 App up and running.

### Next steps

You are now ready to dive into the world of TV app development using Blits. In the following sections, we will explore the core concepts and guide you through building your TV applications step by step.
You are now ready to dive into the world of App development using Blits. In the following sections, we will explore the core concepts and guide you through building your TV applications step by step.

0 comments on commit 0efab7b

Please sign in to comment.