https://github.com/gleam-lang/developer-survey
🗺 Learning about the Gleam community
https://github.com/gleam-lang/developer-survey
gleam hacktoberfest webapp
Last synced: 5 months ago
JSON representation
🗺 Learning about the Gleam community
- Host: GitHub
- URL: https://github.com/gleam-lang/developer-survey
- Owner: gleam-lang
- Created: 2022-09-02T09:17:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-12T08:52:57.000Z (5 months ago)
- Last Synced: 2026-01-12T18:32:06.977Z (5 months ago)
- Topics: gleam, hacktoberfest, webapp
- Language: Gleam
- Homepage: https://developer-survey.gleam.run
- Size: 271 KB
- Stars: 23
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Gleam Developer Survey
Learning things about the Gleam community.
```sh
gleam run
```
# Deployment
Podman quadlet!
```ini
[Unit]
Description=Gleam Developer Survey container
After=local-fs.target
[Container]
Image=ghcr.io/gleam-lang/developer-survey:main
# Make podman-auto-update.service update it when there's a new image version
AutoUpdate=registry
# Expose the port the app is listening on
PublishPort=3000:3001
# Mount the storage
Volume=/srv/gleam-developer-survey:/app/data:rw,z
# Restart the service if the health check fails
HealthCmd=sh -c /app/healthcheck.sh
HealthInterval=30s
HealthTimeout=5s
HealthRetries=3
HealthOnFailure=restart
[Install]
WantedBy=multi-user.target default.target
```