-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #218 from inkdevhub/ink-devhub-1
Astar Treasury Proposal Roadmap - ink!DevHub 1.0
- Loading branch information
Showing
72 changed files
with
7,197 additions
and
2,793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[BUG]: " | ||
labels: ["bug"] | ||
projects: ["swanky-cli"] | ||
|
||
body: | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Tell us what happened. In particular, tell us how and why you are using this project, and describe the bug that you encountered. Please note that we are not able to support all conceivable use cases, but the more information you are able to provide the more equipped we will be to help. | ||
placeholder: Write your bug report here | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Replace the example steps below with actual steps to reproduce the bug you're reporting. | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: Tell us what should happen | ||
placeholder: Write your expected behavior here. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
description: Tell us what happens instead | ||
placeholder: Write your actual behavior here. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: Describe the environment in which you encountered this bug. Use the list below as a starting point and add additional information if you think it's relevant. | ||
value: | | ||
- Operating System | ||
- Project version/tag: (run 'swanky version') | ||
- Rust version (run `rustup show`) | ||
- Node version (run `node --version`) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs, Errors, Screenshots | ||
description: Please provide the text of any logs or errors that you experienced; if applicable, provide screenshots to help illustrate the problem. | ||
placeholder: | | ||
Paste your logs here | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: Add any other context about the problem here. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Feature request | ||
description: New feature/ticket for the project | ||
labels: ["enhancement"] | ||
projects: ["swanky-cli"] | ||
|
||
body: | ||
- type: textarea | ||
id: overview | ||
attributes: | ||
label: Overview (What and Why) | ||
description: Write description of what the feature should be, why | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: how | ||
attributes: | ||
label: How to do it? | ||
description: Describe what needs to be done. | ||
placeholder: | | ||
- Task 1 | ||
- Task 2 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: definition-of-done | ||
attributes: | ||
label: Definition of Done | ||
description: Write definition of done, how to verify | ||
placeholder: | | ||
- Unit test cases | ||
- Docs updated | ||
- PR approved and merged to master | ||
- etc. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: open-issues-and-blockers | ||
attributes: | ||
label: Open Issues and Blockers | ||
description: Dependencies issue or PR or some other blocker. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This configuration file was automatically generated by Gitpod. | ||
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) | ||
# and commit this file to your remote git repository to share the goodness with others. | ||
|
||
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart | ||
|
||
ports: | ||
- name: Swanky Node | ||
port: 9944 | ||
|
||
vscode: | ||
extensions: | ||
- rust-lang.rust-analyzer | ||
|
||
tasks: | ||
- init: | | ||
# Add wasm target | ||
rustup target add wasm32-unknown-unknown | ||
# Add necessary components | ||
rustup component add rust-src | ||
# Install or update cargo packages | ||
cargo install --force --locked cargo-contract | ||
cargo install cargo-dylint dylint-link | ||
yarn install | ||
yarn build | ||
command: | | ||
echo "Swanky Dev Environment ready!" | ||
echo "Use Swanky directly by running \"./bin/run.js COMMAND\"" | ||
echo "For example:" | ||
echo "./bin/run.js init temp_project" | ||
echo "cd temp_project" | ||
echo "../bin/run.js contract compile flipper" |
Oops, something went wrong.