fluence init

This commit is contained in:
boneyard93501 2023-02-07 22:26:31 -06:00
parent 92982caacb
commit 8b4e706df4
6 changed files with 47 additions and 9 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
.idea
.DS_Store
.fluence
**/node_modules
**/target/
.repl_history
.vscode/settings.json
src/ts/src/aqua
src/js/src/aqua

9
fluence-lock.yaml Normal file
View File

@ -0,0 +1,9 @@
# yaml-language-server: $schema=.fluence/schemas/fluence-lock.yaml.json
# Defines a lock file for Fluence Project dependencies. When dependencies are installed - their exact versions are saved here.
# Documentation: https://github.com/fluencelabs/fluence-cli/tree/main/docs/configs/fluence-lock.md
version: 0
cargo:
marine: 0.12.6

18
fluence.yaml Normal file
View File

@ -0,0 +1,18 @@
# yaml-language-server: $schema=.fluence/schemas/fluence.yaml.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/fluence-cli/tree/main/docs/configs/fluence.md
version: 2
aquaInputPath: src/aqua/main.aqua
dependencies:
npm:
"@fluencelabs/aqua-lib": 0.6.0
cargo:
marine: 0.12.6
services:
consensus:
get: services
deploy:
- deployId: default

View File

@ -1,9 +0,0 @@
/target
/artifacts
**/*.rs.bk
**/.idea
**/artifacts
**/.DS_Store
**/node_modules
**/dist
*.bak

View File

@ -0,0 +1,6 @@
{
"recommendations": [
"redhat.vscode-yaml",
"FluenceLabs.aqua"
]
}

View File

@ -0,0 +1,5 @@
{
"aquaSettings.imports": [
"/Users/bebo/localdev/eip712-validation-node/services/consensus/.fluence/aqua"
]
}