-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc12697
commit 06606fd
Showing
2 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
# Hono with Bun runtime | ||
|
||
## Getting Started | ||
|
||
### Cloning the repo | ||
# Intro | ||
TODO | ||
|
||
# Setup | ||
```sh | ||
bun create hono ./NAME_HERE | ||
``` | ||
# Install bubblewrap for secure execution | ||
apt install bubblewrap | ||
|
||
# Install dotnet to compile the bots | ||
curl -fsSL https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh | bash | ||
|
||
### Development | ||
# Install bun | ||
curl -fsSL https://bun.sh/install | bash | ||
|
||
mkdir compiled | ||
``` | ||
bun run start | ||
After that, you can develop or run as any other bun project. | ||
```sh | ||
bun install | ||
bun backend/index.html | ||
``` | ||
|
||
Open http://localhost:3000 with your browser to see the result. | ||
|
||
### For more information | ||
|
||
See <https://honojs.dev/> | ||
# Architecture | ||
TODO |