Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clearloop/docker-build
https://github.com/clearloop/docker-build
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/clearloop/docker-build
- Owner: clearloop
- License: mit
- Created: 2024-01-29T10:01:03.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-01-29T16:33:22.000Z (12 months ago)
- Last Synced: 2024-01-29T19:48:28.663Z (12 months ago)
- Language: Rust
- Size: 306 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Open in Gitpod](https://img.shields.io/badge/Open_in-Gitpod-white?logo=gitpod)](https://gitpod.io/#https://github.com/gear-foundation/dapps)
[![CI](https://img.shields.io/github/actions/workflow/status/gear-foundation/dapps/contracts.yml?logo=github&label=CI)](https://github.com/gear-foundation/dapp-template/actions/workflows/ci.yml)# Gear Template Contract
A template application. Use this repository as a template when creating a new application repository.
> https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template
## Initial checklist after creating a new repository
- [ ] Change the app name in `Cargo.toml`.
- [ ] Fix badges' links in `README.md` (replace `gear-foundation/dapp-template` with `/`).
- [ ] Replace a description in `README.md`.
- [ ] Remove this section.
### 🏗️ Building```sh
cargo b --workspace
```### ✅ Testing
Run all tests, except `gclient` ones:
```sh
cargo t --workspace -- --skip gclient
```Run all tests:
```sh
# Download the node binary.
cargo xtask node
cargo t --workspace
```### 🚀 Run CI locally (should be done before a commit)
```sh
cargo xtask ci
```# License
The source code is licensed under the [MIT license](LICENSE).