Categories
Workflow Templates
AI-assisted development workflow templates
1 templateBasic Web Server Templates
Minimal web server templates that demonstrate Hello World in multiple languages
6 templatesDemo Stacks
Minimal demonstration templates for getting started with UIS
1 templateWeb Application Templates
Frontend web application starter templates
1 templateApplications
Applications whose install definition is published as an OCI artifact
1 templateBasic Webserver with Database
Minimal web server templates that connect to a UIS-deployed database
1 templateAll Templates
Workflow Templates
1 templateA structured AI development workflow that guides AI coding assistants through investigation, planning, and phased implementation. Includes CLAUDE.md, 6 portable docs, plan templates, and git safety rules. Designed for human-in-the-loop collaboration.
Basic Web Server Templates
6 templatesA minimal ASP.NET Core web server with hot reload via dotnet watch. Includes Docker multi-stage build, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
A minimal web server using Go's standard net/http package with a health check endpoint. Includes Docker multi-stage build, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
A minimal Spring Boot web server with health check endpoints via Actuator. Includes Docker multi-stage build, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
A minimal PHP web server using PHP's built-in server with a health check endpoint. Includes Docker containerization, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
A minimal Python web server using Flask with a health check endpoint. Includes Docker containerization, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow. Ideal for microservices and API backends.
A minimal Express.js web server written in TypeScript with hot reload via nodemon. Includes Docker containerization, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
Demo Stacks
1 templateA minimal UIS template that deploys PostgreSQL and creates a sample tasks table with seed data. Shows the full uis template flow from registry to deployed, configured service. Use this to verify your UIS setup or as a starting point for your own stack templates.
Web Application Templates
1 templateA React application using Designsystemet from Digdir with blog cards, Vite for development, and TypeScript support. Includes Docker containerization, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow.
Applications
1 templateInstalls the Atlas data platform as one application: a PostgreSQL database with its migrations, a Dagster code location running the ingest and dbt transforms, and a PostgREST API over the curated api_v1 views. The data is an open semantic layer over Norwegian public sources — SSB statistics, FHI public-health and living-conditions indicators, Bufdir child-poverty figures and the Brønnøysund business register — joined to NGO supply data, so that humanitarian need and the organisations responding to it can be queried together at kommune level. The API is self-describing: meta_sources, meta_endpoints and meta_dimensions let a consumer discover what is available without out-of-band documentation. A fresh install serves an empty API until the first pipeline run — the schema and grants exist from install, the data arrives on the ingest schedule. Exports api-url for other applications to consume. Installing does not start anything: the schedules and sensors ship stopped, so no data is fetched until an operator turns them on. That is a deliberate go-live decision, not a side effect of installing — and enabling them starts the NEXT scheduled run rather than backfilling, so a fresh install stays empty until the first-data jobs are launched by hand.
Basic Webserver with Database
1 templateA minimal Flask web server that connects to a PostgreSQL database and reads from a tasks table. Demonstrates the full producer/consumer flow — UIS deploys PostgreSQL, dev-template configure creates the database and wires the connection into .env, and the app reads from it. Includes Docker containerization, Kubernetes deployment manifests, and GitHub Actions CI/CD workflow. Consumer-side companion to the postgresql-demo UIS stack template.