Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.
Merged
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
47 changes: 23 additions & 24 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,31 +85,30 @@ Use Ctrl-C to exit
Let's review what the `go-standard` template has defined in the `suga.yaml`:

```yaml title="suga.yaml" icon="file-code"
targets:
- suga/aws@1
name: go-standard
description: A Go web service template using the Suga framework for cloud resource access.
services:
targets:
- suga/aws@1
name: my-first-app
description: A Go web service template using the Suga framework for cloud resource access.
services:
app:
env:
TEST: test
container:
docker:
dockerfile: Dockerfile
context: .
dev:
script: go run main.go
buckets:
image:
access:
app:
env:
TEST: test
container:
docker:
dockerfile: Dockerfile
context: .
dev:
script: go run main.go
buckets:
files:
access:
app:
- read
- write
entrypoints:
ingress:
routes:
/:
name: app
- all
entrypoints:
ingress:
routes:
/:
name: app
```

The template includes:
Expand Down