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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,18 @@ The [documentation](https://fresh.deno.dev/docs/) is available on
## Getting started

You can scaffold a new project by running the Fresh init script. To scaffold a
project in the `myproject` folder, run the following:
project in the `my-project` folder, run the following:

```sh
deno run -A -r https://fresh.deno.dev my-project
```

Go to `my-project` folder:

```
cd my-project
```

To now start the project, use `deno task`:

```
Expand Down
3 changes: 2 additions & 1 deletion init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,4 +343,5 @@ const manifest = await collect(directory);
await generate(directory, manifest);

console.log("\n%cProject created!", "color: green; font-weight: bold");
console.log("Run \`deno task start\` in the project directory to get started.");
console.log("\`cd my-project\` to enter to the project directory.");
console.log("Run \`deno task start\` to start the development server.");