Skip to content

Commit

Permalink
Merge pull request #1 from atsign-foundation/doug-first-version
Browse files Browse the repository at this point in the history
Initial version with PKAM auth and simple data exchange
  • Loading branch information
Zambrella authored Jun 21, 2023
2 parents a7ed62d + 5a60809 commit 7c87f7c
Show file tree
Hide file tree
Showing 27 changed files with 1,123 additions and 1,005 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
Cargo.lock
22 changes: 11 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,32 @@ describe. The atsign-foundation GitHub organization's conventions and configurat


### Prerequisites

``` sh
# show how to install the tools needed to work with the code here
```

The following need to be installed:
- `rust` - [Installation instructions](https://doc.rust-lang.org/book/ch01-01-installation.html)
- `openssl`
- `libssl-dev`
- `pkg-config`

### GitHub Repository Clone

To prepare your dedicated GitHub repository:

1. Fork in GitHub https://github.com/atsign-foundation/REPO
2. Clone *your forked repository* (e.g., `git clone [email protected]:yourname/REPO`)
1. Fork in GitHub https://github.com/atsign-foundation/at_rust.git
2. Clone *your forked repository* (e.g., `git clone [email protected]:yourname/at_rust.git`)
3. Set your remotes as follows:

```sh
cd REPO
git remote add upstream [email protected]:atsign-foundation/REPO.git
git remote add upstream [email protected]:atsign-foundation/at_rust.git
git remote set-url upstream --push DISABLED
```

Running `git remote -v` should give something similar to:

```text
origin [email protected]:yourname/REPO.git (fetch)
origin [email protected]:yourname/REPO.git (push)
upstream [email protected]:atsign-foundation/REPO.git (fetch)
origin [email protected]:yourname/at_rust.git (fetch)
origin [email protected]:yourname/at_rust.git (push)
upstream [email protected]:atsign-foundation/at_rust.git (fetch)
upstream DISABLED (push)
```

Expand Down
Loading

0 comments on commit 7c87f7c

Please sign in to comment.