An open API service indexing awesome lists of open source software.

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

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
```