diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..04a2d57 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,3 @@ +# Code of Conduct + +All Excalibur.js projects are released with the [Contributor Code of Conduct](https://github.com/excaliburjs/Excalibur/blob/main/.github/CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms. diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..685024b --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,9 @@ +# How to Contribute + +## Code of Conduct + +All Excalibur.js projects are released with the [Contributor Code of Conduct](https://github.com/excaliburjs/Excalibur/blob/master/.github/CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms. + +## Contributing Document + +The contributing document for Excalibur.js projects is located here: [Contributing Document](https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000..c1ef187 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,41 @@ +--- +name: Bug Report +about: Something not working as expected? Tell us about it! +title: '' +labels: '' +assignees: '' + +--- + + + + + + +### Steps to Reproduce + + + +### Expected Result + + +### Actual Result + + +### Environment + +- browsers and versions: +- operating system: +- Excalibur versions: +- (anything else that may be relevant) + +### Current Workaround + diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..cb84135 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,30 @@ +--- +name: Feature Request +about: Suggest a new feature or improvement +title: '' +labels: '' +assignees: '' + +--- + + + + + + + + +### Context + + +### Proposal + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..f655ae7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,33 @@ + + +===:clipboard: PR Checklist :clipboard:=== + +- [ ] :pushpin: issue exists in github for these changes +- [ ] :microscope: existing tests still pass +- [ ] :see_no_evil: code conforms to the [style guide](https://github.com/excaliburjs/Excalibur/blob/master/STYLEGUIDE.md) +- [ ] :triangular_ruler: new tests written and passing / old tests updated with new scenario(s) +- [ ] :page_facing_up: changelog entry added (or not needed) + +================== + + + + + + + + + +Closes # + +## Changes: + +- change 1 +- change 2 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bf85b57 --- /dev/null +++ b/LICENSE @@ -0,0 +1,25 @@ +BSD 2-Clause License + +Copyright (c) 2023, Excalibur.js +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.