Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifertrin authored Nov 7, 2023
0 parents commit 9896f8c
Show file tree
Hide file tree
Showing 82 changed files with 31,466 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Alchemy API key (domain-restricted; replace with your own from https://dashboard.alchemy.com/apps)
VITE_ALCHEMY_API_KEY = RICWUi6djyPPXdarIENtIUV9UEOfnTQb
8 changes: 8 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": ["react-app", "react-app/jest"],
"rules": {
"no-extra-semi": "warn",
"quotes": ["warn", "single"],
"quote-props": ["warn", "as-needed"]
}
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @dfinity/dx
103 changes: 103 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
# Contributing

Thank you for your interest in contributing to this repo. As a member of the community, you are invited and encouraged to contribute by submitting issues, offering suggestions for improvements, adding review comments to existing pull requests, or creating new pull requests to fix issues.

All contributions to DFINITY documentation and the developer community are respected and appreciated.
Your participation is an important factor in the success of the Internet Computer.

## Before you contribute

Before contributing, please take a few minutes to review these contributor guidelines.
The contributor guidelines are intended to make the contribution process easy and effective for everyone involved in addressing your issue, assessing changes, and finalizing your pull requests.

Before contributing, consider the following:

- If you want to report an issue, click **Issues**.

- If you have a general question, post a message to the [community forum](https://forum.dfinity.org/) or submit a [support request](mailto://[email protected]).

- If you are reporting a bug, provide as much information about the problem as possible.

- If you want to contribute directly to this repository, typical fixes might include any of the following:

- Fixes to resolve bugs or documentation errors
- Code improvements
- Feature requests

Note that any contribution to this repository must be submitted in the form of a **pull request**.

- If you are creating a pull request, be sure that the pull request only implements one fix or suggestion.

If you are new to working with GitHub repositories and creating pull requests, consider exploring [First Contributions](https://github.com/firstcontributions/first-contributions) or [How to Contribute to an Open Source Project on GitHub](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github).

# How to make a contribution

Depending on the type of contribution you want to make, you might follow different workflows.

This section describes the most common workflow scenarios:

- Reporting an issue
- Submitting a pull request

### Reporting an issue

To open a new issue:

1. Click **Issues**.

1. Click **New Issue**.

1. Click **Open a blank issue**.

1. Type a title and description, then click **Submit new issue**.

Be as clear and descriptive as possible.

For any problem, describe it in detail, including details about the crate, the version of the code you are using, the results you expected, and how the actual results differed from your expectations.

### Submitting a pull request

If you want to submit a pull request to fix an issue or add a feature, here's a summary of what you need to do:

1. Make sure you have a GitHub account, an internet connection, and access to a terminal shell or GitHub Desktop application for running commands.

2. Navigate to the official repository in a web browser.

3. Click **Fork** to create a copy of the repository associated with the issue you want to address under your GitHub account or organization name.

4. Clone the repository to your local machine.

5. Create a new branch for your fix by running a command similar to the following:

```bash
git checkout -b my-branch-name-here
```

6. Open the file you want to fix in a text editor and make the appropriate changes for the issue you are trying to address.

7. Add the file contents of the changed files to the index `git` uses to manage the state of the project by running a command similar to the following:

```bash
git add path-to-changed-file
```
8. Commit your changes to store the contents you added to the index along with a descriptive message by running a command similar to the following:

```bash
git commit -m "Description of the fix being committed."
```

9. Push the changes to the remote repository by running a command similar to the following:

```bash
git push origin my-branch-name-here
```

10. Create a new pull request for the branch you pushed to the upstream GitHub repository.

Provide a title that includes a short description of the changes made.

11. Wait for the pull request to be reviewed.

12. Make changes to the pull request, if requested.

13. Celebrate your success after your pull request is merged!
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Tests

on:
push:
branches: [ "main" ]
pull_request:

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Set up Rust
run: rustup target add wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- name: Install dfx
uses: dfinity/setup-dfx@main
- name: Start dfx
run: |
dfx cache install
dfx start --background
- run: npm run setup
- run: npm test
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules/
.pnp
.pnp.js

# testing
/coverage

# production
/dist

# local files
/local

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local Netlify folder
.netlify

# cache directories
.vessel
.mops
.dfx

# declarations
/src/declarations

# Rust
target/

# environment variables
.env.local
.env.development.local
.env.test.local
.env.production.local

4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run precommit
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"plugins": ["prettier-plugin-motoko"],
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"bracketSpacing": true,
"trailingComma": "all"
}
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"rust-lang.rust-analyzer",
"dfinity-foundation.vscode-motoko",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"lightyen.tailwindcss-intellisense-twin"
]
}
Loading

0 comments on commit 9896f8c

Please sign in to comment.