blob: 3104718bfc5227e5a77d9cadd7024ef00a7bafb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
# witryna.yaml — per-repository build configuration
# Place this file in the root of your Git repository.
# Supported filenames: .witryna.yaml, .witryna.yml, witryna.yaml, witryna.yml
# Or set config_file in witryna.toml for a custom path.
# See witryna.toml(5) for overriding these values in the server config.
# Container image for the build environment
image: node:20-alpine
# Build command (executed via sh -c inside the container)
command: "npm ci && npm run build"
# Directory containing built static assets (relative to repo root)
public: dist
|