mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
25 lines
613 B
YAML
25 lines
613 B
YAML
|
# yaml-language-server: $schema=.fluence/schemas/fluence.json
|
||
|
|
||
|
# Defines Fluence Project, most importantly - what exactly you want to deploy and how. You can use `fluence init` command to generate a template for new Fluence project
|
||
|
|
||
|
# Documentation: https://github.com/fluencelabs/cli/tree/main/docs/configs/fluence.md
|
||
|
|
||
|
version: 5
|
||
|
|
||
|
aquaInputPath: src/aqua/main.aqua
|
||
|
|
||
|
deals:
|
||
|
dealName:
|
||
|
minWorkers: 1
|
||
|
targetWorkers: 3
|
||
|
services: [ echo_service ]
|
||
|
spells: []
|
||
|
|
||
|
services:
|
||
|
echo_service:
|
||
|
get: src/services/echo_service
|
||
|
|
||
|
relaysPath: src/frontend/src
|
||
|
|
||
|
aquaOutputTSPath: src/frontend/src/compiled-aqua
|