Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
feat: initiating the repository (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: Bruno Bernard <contact.brunobernard@gmail.com>
  • Loading branch information
kehiy and eznix86 authored Nov 14, 2023
1 parent c7c8093 commit 5e7798e
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*/ @eznix86
40 changes: 40 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Check

on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
yaml:
name: Lining Yaml files
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Linting Yaml files
run: |
yarn run lint:yml:setup
yarn run lint:yml
markdown:
name: Lining Markdown files
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'

- name: Linting MD files
run: |
yarn run lint:md:setup
yarn run lint:md
17 changes: 17 additions & 0 deletions .github/workflows/semantic_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Semantic PR

on:
pull_request_target:
types:
- opened
- edited
- synchronize

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Empty file added IIPs/iip-0.md
Empty file.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# IPNN
IPNN specs
# InterPlanetary Nostr Network Specification (IPNN) and Documentation

IPNN is a protocol base on the [nostr](https://nostr.com).
In IPNN each node is a nostr relay which is interconnected with p2p service model.

This repository define how nodes should work and act in IPNN network. IIPs (IPNN improvement proposals) define the IPNN rules and improvements. the first IIP (IIP-0) define the basic IPNN protocol.

# Contributing

Contributions are welcomed. read the contribution docs before opening a PR.

# License

IPNN is under the [MIT](./LICENSE) License
Empty file added iip-template.md
Empty file.

0 comments on commit 5e7798e

Please sign in to comment.