-
Notifications
You must be signed in to change notification settings - Fork 14
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 #32 from borkdominik/v0.2.0
V0.2.0
- Loading branch information
Showing
65 changed files
with
2,122 additions
and
885 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Contribution Guidelines | ||
|
||
> *Welcome and thank you for considering contributing to bigER!* | ||
<!-- TABLE OF CONTENTS --> | ||
**📖 Table of Contents** | ||
1. [Bug Reports and Feature Request](#bug-reports-and-feature-request) | ||
2. [Questions and Other Issues](#questions-and-other-issues) | ||
3. [Creating Issues](#creating-issues) | ||
4. [Submit Changes](#submit-changes) | ||
|
||
|
||
<!-- TODO: code of conduct | ||
## Code of Conduct --> | ||
|
||
## Bug Reports and Feature Request | ||
|
||
If you noticed any new problems or miss certain functionality, you can use the provided [issue templates](https://github.com/borkdominik/bigER/issues/new/choose) to create a new bug report or feature request. | ||
|
||
## Questions and Other Issues | ||
|
||
Feel free to [open a blank issue](https://github.com/borkdominik/bigER/issues/new) in case you have questions or anything else to report. | ||
|
||
## Creating Issues | ||
|
||
Please assure the following before submitting a new issue: | ||
- [X] Issue does not exist yet | ||
- [X] Using the latest version bigER | ||
- [X] Look through documentation in the [bigER Wiki](https://github.com/borkdominik/bigER/wiki/) | ||
|
||
You can use one of the pre-defined labels to classify your issue. Currently, we use the following labels: | ||
- `bug` - Problems related to bugs | ||
- `discussion` - Discussion or question | ||
- `dev` - Improvements to the development experience | ||
- `docs` - Improvements or additions to documentation | ||
- `duplicate` - Duplicate of an existing issue | ||
- `feature` - Request new changes | ||
- `help` - Support needed | ||
- `needs more info` - Missing information to be valid | ||
- `won't do` - Currently considered out of scope and will not be worked on | ||
|
||
|
||
|
||
|
||
|
||
|
||
## Submit Changes | ||
|
||
|
||
**Fork the project** | ||
|
||
Fork the [bigER repository](https://github.com/borkdominik/bigER) so you can later submit a pull request with your changes. See the [GitHub Documentation on forking projects](https://docs.github.com/en/get-started/quickstart/fork-a-repo) for more details. | ||
|
||
**Clone locally** | ||
|
||
Clone your fork locally: | ||
|
||
```bash | ||
git clone https://github.com/<your-username>/bigER.git | ||
``` | ||
|
||
Make sure to merge recent changes from the upstream repository with your fork: | ||
|
||
```bash | ||
git checkout main | ||
git pull https://github.com/borkdominik/bigER.git main | ||
``` | ||
|
||
**Submit Pull Request (PR)** | ||
|
||
Push your staged commits to your fork and [create a new pull request](https://github.com/borkdominik/bigER/pulls). Optionally link the PR with a corresponding issue. A code owner will review the changes and decide whether the PR can be merged with the `main` branch. |
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,7 +1,3 @@ | ||
# Pull Request Template | ||
|
||
## Description | ||
|
||
Describe your changes ... | ||
|
||
Fixes # (issue ID) |
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,61 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "bigER: Build all", | ||
"type": "shell", | ||
"command": "yarn", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "bigER: Build Language Server", | ||
"type": "shell", | ||
"command": "language-server/gradlew -p language-server/ build", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "bigER: Build Webview", | ||
"type": "shell", | ||
"command": "yarn --cwd webview", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "bigER: Build Extension", | ||
"type": "shell", | ||
"command": "yarn --cwd extension", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
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 was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,30 @@ | ||
erdiagram Model | ||
|
||
notation=default | ||
generate=off | ||
|
||
entity Entity1 { id key } | ||
entity Entity2 { id key } | ||
entity Entity3 { id key } | ||
entity Entity4 { id key } | ||
entity Entity5 { id key } | ||
entity Entity6 { id key } | ||
entity Entity7 { id key } | ||
entity Entity8 { id key } | ||
|
||
relationship Rel1 { | ||
// zero-or-one -> one-and-only-one | ||
Entity1[0..1] -> Entity2[1..1] | ||
} | ||
relationship Rel2 { | ||
// [1..1] is the same as [1] (one) | ||
Entity3[1..1] -> Entity4[1] | ||
} | ||
relationship Rel3 { | ||
// zero-or-more -> one-or-more | ||
Entity5[0..N] -> Entity6[1..N] | ||
} | ||
relationship Rel4 { | ||
// [1..N] is the same as [N] (many) | ||
Entity7[1..N] -> Entity8[N] | ||
} |
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
Oops, something went wrong.