Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/e2e-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- name: Run emulator
run: |
set -e
juno dev start --headless &
juno dev wait
juno emulator start --headless &
juno emulator wait
juno login --emulator --mode development --headless
juno config --mode development --headless
juno config apply --mode development --headless

- name: Run tests and update Snapshots
run: ./scripts/e2e e2e:ci:snapshots
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Run emulator
run: |
set -e
juno dev start --headless &
juno dev wait
juno emulator start --headless &
juno emulator wait
juno login --emulator --mode development --headless
juno config --mode development --headless
juno config apply --mode development --headless

- name: Run tests
run: ./scripts/e2e e2e:ci
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const outro = ({

const liveReload =
nonNullish(serverlessFunctions) && ['ts', 'js'].includes(serverlessFunctions) ? ' --watch' : '';
const startCmd = `juno dev start${liveReload}`;
const startCmd = `juno emulator start${liveReload}`;
const runJunoDevStart = `In another terminal, run ${cyan(startCmd)} to quickstart the local development emulator`;

const runs = (index: number): string =>
Expand Down
16 changes: 8 additions & 8 deletions templates/angular-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -104,13 +104,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :------------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run start` | Starts frontend dev server at `localhost:4200` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/angular-starter/browser` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :------------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run start` | Starts frontend dev server at `localhost:4200` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/angular-starter/browser` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/angular-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [Angular](https://a

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :------------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run start` | Starts frontend dev server at `localhost:4200` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/angular-starter/browser` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :------------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run start` | Starts frontend dev server at `localhost:4200` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/angular-starter/browser` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/astro-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [Astro](https://doc

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:4321` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:4321` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
16 changes: 8 additions & 8 deletions templates/nextjs-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -101,13 +101,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:3000` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./out/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:3000` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./out/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/nextjs-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [Next.js](https://n

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:3000` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./out/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:3000` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./out/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
16 changes: 8 additions & 8 deletions templates/react-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -101,13 +101,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/react-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [React](https://rea

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
16 changes: 8 additions & 8 deletions templates/react-ts-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -101,13 +101,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/react-ts-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [React](https://rea

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
16 changes: 8 additions & 8 deletions templates/sveltekit-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -101,13 +101,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./build/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./build/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
14 changes: 7 additions & 7 deletions templates/sveltekit-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ A starter kit developed for [Juno](https://juno.build) using [SvelteKit](https:/

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./build/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./build/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
16 changes: 8 additions & 8 deletions templates/vanilla-js-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -100,13 +100,13 @@ Check out the full guides in the [docs](https://juno.build/docs/category/deploym

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| Command | Action |
| :-------------------- | :--------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
6 changes: 3 additions & 3 deletions templates/vue-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To start experimenting with Juno locally, follow these steps:
This will spin up the Juno backend locally:

```bash
juno dev start
juno emulator start
```

### 2. Create a Satellite
Expand Down Expand Up @@ -105,9 +105,9 @@ All commands are run from the root of the project, from a terminal:
| :--------------- | :---------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down
4 changes: 2 additions & 2 deletions templates/vue-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ All commands are run from the root of the project, from a terminal:
| :--------------- | :---------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts frontend dev server at `localhost:5173` |
| `juno dev start` | Quickstart the local development emulator |
| `juno emulator start` | Quickstart the local development emulator |
| `npm run build` | Build your production site to `./dist/` |
| `juno deploy` | Deploy your project to a Satellite |
| `juno hosting deploy` | Deploy your project to a Satellite |

## 🚀 Launch

Expand Down