Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ignite
GitHub Repository: ignite/cli
Path: blob/main/packaging/snap/snapcraft.yaml
1007 views
1
name: ignite
2
base: core22 # the base snap is the execution environment for this snap
3
version: "{{version}}"
4
summary: Build, launch, and maintain any crypto application with Ignite CLI # 79 char long summary
5
description: |
6
Ignite CLI offers everything you need to build, test, and launch your blockchain with a decentralized worldwide community. Ignite CLI is built on top of Cosmos SDK, the world's most popular blockchain framework.
7
Ignite CLI accelerates chain development by scaffolding everything you need so you can focus on business logic.
8
9
grade: stable # must be 'stable' to release into candidate/stable channels
10
confinement: classic
11
12
architectures:
13
- build-on: amd64
14
- build-on: arm64
15
16
parts:
17
ignite:
18
plugin: go
19
source: https://github.com/ignite/cli.git
20
source-tag: v{{version}}
21
source-subdir: ignite/cmd/ignite
22
build-snaps:
23
- go
24
25
apps:
26
ignite:
27
command: bin/ignite
28
29