Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit fd96547

Browse files
committed
Add an initial README with some useful badges
1 parent db87cf4 commit fd96547

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed

.github/workflows/build_tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
pull_request:
55
paths:
66
- 'tools/genesis-snapshot/**'
7-
jobs:
87

8+
jobs:
99
build:
1010
name: Import Check
1111
runs-on: self-hosted

.github/workflows/docker-network-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Docker Network and Check Health
1+
name: Docker Network Health Check
22

33
on:
44
workflow_dispatch:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'documentation/**'
77
- 'scripts/**'
88
- 'tools/**'
9+
910
jobs:
1011
golangci-lint:
1112
name: GolangCI-Lint

.github/workflows/unit-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- name: Run Tests
2525
run: go test ./... -tags rocksdb -count=1 -timeout 20m
2626

27-
2827
unit-tests-race:
2928
name: Unit tests -race
3029
runs-on: self-hosted

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# IOTA-Core - The IOTA 2.0 node
2+
3+
IOTA-Core is the node software for the upcoming IOTA 2.0 protocol.
4+
5+
---
6+
![GitHub Release (latest by date)](https://img.shields.io/github/v/release/iotaledger/iota-core)
7+
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/iotaledger/iota-core)
8+
![GitHub License](https://img.shields.io/github/license/iotaledger/iota-core)
9+
---
10+
[![build_docker](https://github.com/iotaledger/iota-core/actions/workflows/build_docker.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/build_docker.yml)
11+
[![build_tools](https://github.com/iotaledger/iota-core/actions/workflows/build_tools.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/build_tools.yml)
12+
[![docker-network-health](https://github.com/iotaledger/iota-core/actions/workflows/docker-network-health.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/docker-network-health.yml)
13+
[![docker-network-tests-nightly](https://github.com/iotaledger/iota-core/actions/workflows/docker-network-tests-nightly.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/docker-network-tests-nightly.yml)
14+
[![golangci-lint](https://github.com/iotaledger/iota-core/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/golangci-lint.yml)
15+
[![release](https://github.com/iotaledger/iota-core/actions/workflows/release.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/release.yml)
16+
[![unit-test](https://github.com/iotaledger/iota-core/actions/workflows/unit-test.yml/badge.svg)](https://github.com/iotaledger/iota-core/actions/workflows/unit-test.yml)
17+
---
18+
19+
In this repository you will find the following branches:
20+
21+
- `production`: this branch contains the latest released code targeted for the [IOTA mainnet](https://iota.org)
22+
- `staging`: this branch contains the latest released code targeted for the [shimmer network](https://shimmer.network)
23+
- `develop`: default branch where all development will get merged to. This represents the next iteration of the node.
24+
25+
## Notes
26+
27+
- **Please open a [new issue](https://github.com/iotaledger/iota-core/issues/new) if you detect an error or crash (or submit a PR if you have already fixed it).**
28+
29+
## Configuration
30+
31+
An overview over all configuration parameters can be found [here.](documentation/configuration.md)
32+
33+
## Setup
34+
We recommend not using this repo directly but using our pre-built [Docker images](https://hub.docker.com/r/iotaledger/iota-core).

0 commit comments

Comments
 (0)