Skip to content

Commit

Permalink
Merge pull request #1 from hyphacoop/initial
Browse files Browse the repository at this point in the history
feat: create initial implementation for DP CLI
  • Loading branch information
RangerMauve authored Dec 5, 2024
2 parents bdb5c83 + 75c0d5f commit 181a95d
Show file tree
Hide file tree
Showing 19 changed files with 6,051 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .dprc.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"dpApiUrl": "https://api.distributed.press/v1",
"socialInboxUrl": "https://social.distributed.press/v1",
"authToken": "<your-auth-token>",
"keypair": {
"publicKeyPem": "<your-public-key>",
"privateKeyPem": "<your-private-key>"
},
"actorUsername": "<your-actor-username>",
"actorUrl": "<your-actor-url>",
"publicKeyId": "<your-public-key-id>"
}
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Lint

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install dependencies
run: npm install

- name: Run lint
run: npm run lint
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Configuration files
.dprc
Loading

0 comments on commit 181a95d

Please sign in to comment.