### Running Gleam Server Locally (Shell) Source: https://github.com/gleam-lang/packages/blob/main/README.md Command to start the web server locally for development and testing purposes. ```Shell gleam run server ``` -------------------------------- ### Running Gleam Tests (Shell) Source: https://github.com/gleam-lang/packages/blob/main/README.md Command to execute the test suite for the Gleam project to verify code correctness. ```Shell gleam test ``` -------------------------------- ### Podman/Systemd Deployment Configuration (INI) Source: https://github.com/gleam-lang/packages/blob/main/README.md Systemd unit configuration for deploying the Gleam application as a container using Podman. It defines the container image, port mapping, volume mounts for storage, environment variables, and auto-update settings. ```INI [Unit] Description=My Gleam web application After=local-fs.target [Container] Image=ghcr.io/gleam-lang/packages: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:3000 # Mount the storage Volume=/srv/packages-storage:/storage:rw,z Environment=DATABASE_PATH=/storage # Provide the secrets EnvironmentFile=/srv/packages-environment [Install] WantedBy=multi-user.target default.target ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.