20 lines
304 B
YAML
20 lines
304 B
YAML
name: Test Web App
|
|
description: A simple web application for testing
|
|
|
|
api:
|
|
version: v1
|
|
endpoints:
|
|
- name: health
|
|
path: /health
|
|
method: GET
|
|
- name: calculator
|
|
path: /calculate
|
|
method: POST
|
|
|
|
database:
|
|
type: sqlite
|
|
name: test.db
|
|
|
|
logging:
|
|
level: info
|
|
format: json |