https://github.com/smeghead/hono-example
https://github.com/smeghead/hono-example
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/smeghead/hono-example
- Owner: smeghead
- License: mit
- Created: 2025-05-06T12:14:50.000Z (28 days ago)
- Default Branch: main
- Last Pushed: 2025-05-07T13:35:53.000Z (27 days ago)
- Last Synced: 2025-05-07T16:16:28.862Z (27 days ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hono Docker Development Environment
## 開発環境
```bash
docker run -it -v $(pwd):/app -w /app denoland/deno:2.3.1 sh
``````bash
docker compose build
docker compose run --rm -P app bash
# deno run --allow-net --watch main.ts
``````bash
docker compose exec app bash
# deno test
```