-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluence.yaml
37 lines (29 loc) · 867 Bytes
/
fluence.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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: 8
deployments:
myDeployment:
targetWorkers: 3
pricePerWorkerEpoch: "0.0001"
initialBalance: "1"
services: [ myService ]
spells: []
aquaDependencies:
"@fluencelabs/aqua-lib": 0.9.1
"@fluencelabs/spell": 0.7.6
services:
myService:
get: src/services/myService
relaysPath:
- src/frontend/src
- src/gateway/src
compileAqua:
frontend:
input: src/aqua
output: src/frontend/src/compiled-aqua
target: ts
gateway:
input: src/aqua
output: src/gateway/src/compiled-aqua
target: ts