-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9151ff7
commit ccec37b
Showing
6 changed files
with
129 additions
and
30 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
.github/ISSUE_TEMPLATE/-bug---short-description-of-the-problem.md
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,31 @@ | ||
--- | ||
name: "[BUG]: Short description of the problem" | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Station (please complete the following information):** | ||
- OS: [e.g. Windows, Ubuntu] | ||
- Version [e.g. 10, 11, 22.02] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
17 changes: 17 additions & 0 deletions
17
.github/ISSUE_TEMPLATE/-docs--short-description-of-the-documentation-issue.md
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,17 @@ | ||
--- | ||
name: "[DOCS] Short description of the documentation issue" | ||
about: Suggest documentation improvements | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the issue with the documentation** | ||
A clear and concise description of what the issue is. | ||
|
||
**Suggest a solution** | ||
Describe how the documentation can be improved or corrected. | ||
|
||
**Additional context** | ||
Add any other context, references, or screenshots that might help clarify the issue. |
20 changes: 20 additions & 0 deletions
20
.github/ISSUE_TEMPLATE/-feature--short-description-of-the-feature.md
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,20 @@ | ||
--- | ||
name: "[FEATURE] Short description of the feature" | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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 |
---|---|---|
@@ -1 +1,24 @@ | ||
dist-newstyle | ||
dist | ||
dist-* | ||
cabal-dev | ||
*.o | ||
*.hi | ||
*.hie | ||
*.chi | ||
*.chs.h | ||
*.dyn_o | ||
*.dyn_hi | ||
.hpc | ||
.hsenv | ||
.cabal-sandbox/ | ||
cabal.sandbox.config | ||
*.prof | ||
*.aux | ||
*.hp | ||
*.eventlog | ||
.stack-work/ | ||
cabal.project.local | ||
cabal.project.local~ | ||
.HTF/ | ||
.ghc.environment.* |
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 |
---|---|---|
@@ -1,18 +1,28 @@ | ||
# haskell-sdk | ||
|
||
## Setup | ||
|
||
Get Maestro api key from (https://dashboard.gomaestro.org/login) | ||
|
||
Create Maestro environment | ||
|
||
```haskell | ||
import Maestro.Client.Env | ||
|
||
mEnv <- mkMaestroEnv "api-key" Preprod | ||
|
||
-- we can use maestro environment to access Client Apis (Eg.) | ||
|
||
accountInfo <- Maestro.Client.Accounts.getAccount mEnv "stake_......." | ||
|
||
``` | ||
# Maestro Haskell SDK | ||
|
||
[TODO(Varderes)] Logo goes here | ||
|
||
[TODO(Varderes/Piyush)] 1-3 describing the library and why it exists | ||
|
||
# Installation | ||
|
||
[TODO(Piyush)] | ||
|
||
# Usage | ||
|
||
[TODO(Piyush)] | ||
|
||
## Examples | ||
|
||
[TODO(Piyush)] | ||
|
||
# Testing | ||
|
||
[TODO(Piyush)] | ||
|
||
# Documentation | ||
|
||
All Maestro documentation lives [here](https://docs.gomaestro.org/)! | ||
|
||
# Contributing | ||
Meastro welcomes all contributors! Please see our [contributing guidlines](CONTRIBUTING.md) and [code of conduct](CODE_OF_CONDUCT.md). |