generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 5c332bd
Showing
43 changed files
with
6,755 additions
and
0 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,5 @@ | ||
[*.js] | ||
indent_size = 2 | ||
|
||
[*.css] | ||
indent_size = 4 |
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 @@ | ||
helix-importer-ui |
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,18 @@ | ||
module.exports = { | ||
root: true, | ||
extends: 'airbnb-base', | ||
env: { | ||
browser: true, | ||
}, | ||
parser: '@babel/eslint-parser', | ||
parserOptions: { | ||
allowImportExportEverywhere: true, | ||
sourceType: 'module', | ||
requireConfigFile: false, | ||
}, | ||
rules: { | ||
'import/extensions': ['error', { js: 'always' }], // require js file extensions in imports | ||
'linebreak-style': ['error', 'unix'], // enforce unix linebreaks | ||
'no-param-reassign': [2, { props: false }], // allow modifying properties of param | ||
}, | ||
}; |
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,7 @@ | ||
Please always provide the [GitHub issue(s)](../issues) your PR is for, as well as test URLs where your change can be observed (before and after): | ||
|
||
Fix #<gh-issue-id> | ||
|
||
Test URLs: | ||
- Before: https://main--{repo}--{owner}.aem.live/ | ||
- After: https://<branch>--{repo}--{owner}.aem.live/ |
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,49 @@ | ||
# This workflow will run upon repository creation and clean up | ||
# all files that are not strictly required to build an AEM Live project | ||
# but that we use to develop the project template. This includes this | ||
# particular workflow file. | ||
on: | ||
create: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
actions: write | ||
# only run if commit message is "Initial commit" on main branch | ||
if: ${{ github.event_name == 'workflow_dispatch' || ( github.ref == 'refs/heads/main' && !(contains(github.event, 'head_commit') || github.event.head_commit.message == 'Initial commit' )) }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Use Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Remove Helper Files | ||
run: | | ||
rm -rf \ | ||
.github/workflows/cleanup-on-create.yaml \ | ||
CHANGELOG.md | ||
- name: Initialize README | ||
# replace {repo} and {owner} with the actual values | ||
run: | | ||
sed -i.bak "s/{repo}/$(basename ${{ github.repository }})/g" README.md | ||
sed -i.bak "s/{owner}/$(dirname ${{ github.repository }})/g" README.md | ||
- name: Initialize Pull Request Template | ||
run: | | ||
sed -i.bak "s/{repo}/$(basename ${{ github.repository }})/g" .github/pull_request_template.md | ||
sed -i.bak "s/{owner}/$(dirname ${{ github.repository }})/g" .github/pull_request_template.md | ||
# commit back to the repository | ||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "AEM Bot" | ||
git add . | ||
git commit -m "chore: cleanup repository template" | ||
git push |
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,14 @@ | ||
name: Build | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- run: npm ci | ||
- run: npm run lint |
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,9 @@ | ||
.hlx/* | ||
coverage/* | ||
logs/* | ||
node_modules/* | ||
|
||
helix-importer-ui | ||
.DS_Store | ||
*.bak | ||
.idea |
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,7 @@ | ||
.* | ||
*.md | ||
karma.config.js | ||
LICENSE | ||
package.json | ||
package-lock.json | ||
test/* |
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,3 @@ | ||
{ | ||
"extends": ["config:recommended"] | ||
} |
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,3 @@ | ||
{ | ||
"extends": ["stylelint-config-standard"] | ||
} |
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,68 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Page not found</title> | ||
<script type="text/javascript"> | ||
window.isErrorPage = true; | ||
window.errorCode = '404'; | ||
</script> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta property="og:title" content="Page not found"> | ||
<script src="/scripts/scripts.js" type="module" crossorigin="use-credentials"></script> | ||
<script type="module"> | ||
window.addEventListener('load', () => { | ||
if (document.referrer) { | ||
const { origin, pathname } = new URL(document.referrer); | ||
if (origin === window.location.origin) { | ||
const backBtn = document.createElement('a'); | ||
backBtn.classList.add('button', 'error-button-back'); | ||
backBtn.href = pathname; | ||
backBtn.textContent = 'Go back'; | ||
backBtn.title = 'Go back'; | ||
const btnContainer = document.querySelector('.button-container'); | ||
btnContainer.append(backBtn); | ||
} | ||
} | ||
}); | ||
</script> | ||
<script type="module"> | ||
import { sampleRUM } from '/scripts/aem.js'; | ||
sampleRUM('404', { source: document.referrer }); | ||
</script> | ||
<link rel="stylesheet" href="/styles/styles.css"> | ||
<style> | ||
main.error { | ||
min-height: calc(100vh - var(--nav-height)); | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
main.error .error-number { | ||
width: 100%; | ||
} | ||
|
||
main.error .error-number text { | ||
font-family: monospace; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="/styles/lazy-styles.css"> | ||
</head> | ||
|
||
<body> | ||
<header></header> | ||
<main class="error"> | ||
<div class="section"> | ||
<svg viewBox="1 0 38 18" class="error-number"> | ||
<text x="0" y="17">404</text> | ||
</svg> | ||
<h2 class="error-message">Page Not Found</h2> | ||
<p class="button-container"> | ||
<a href="/" class="button secondary error-button-home">Go home</a> | ||
</p> | ||
</div> | ||
</main> | ||
<footer></footer> | ||
</body> | ||
|
||
</html> |
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,74 @@ | ||
# Adobe Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as | ||
contributors and maintainers pledge to making participation in our project and | ||
our community a harassment-free experience for everyone, regardless of age, body | ||
size, disability, ethnicity, gender identity and expression, level of experience, | ||
nationality, personal appearance, race, religion, or sexual identity and | ||
orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment | ||
include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or | ||
advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic | ||
address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable | ||
behavior and are expected to take appropriate and fair corrective action in | ||
response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or | ||
reject comments, commits, code, wiki edits, issues, and other contributions | ||
that are not aligned to this Code of Conduct, or to ban temporarily or | ||
permanently any contributor for other behaviors that they deem inappropriate, | ||
threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces | ||
when an individual is representing the project or its community. Examples of | ||
representing a project or community include using an official project e-mail | ||
address, posting via an official social media account, or acting as an appointed | ||
representative at an online or offline event. Representation of a project may be | ||
further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good | ||
faith may face temporary or permanent repercussions as determined by other | ||
members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, | ||
available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
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,73 @@ | ||
# Contributing to Project Helix | ||
|
||
This project (like almost all of Project Helix) is an Open Development project and welcomes contributions from everyone who finds it useful or lacking. | ||
|
||
## Code Of Conduct | ||
|
||
This project adheres to the Adobe [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to cstaub at adobe dot com. | ||
|
||
## Contributor License Agreement | ||
|
||
All third-party contributions to this project must be accompanied by a signed contributor license. This gives Adobe permission to redistribute your contributions as part of the project. [Sign our CLA](http://opensource.adobe.com/cla.html)! You only need to submit an Adobe CLA one time, so if you have submitted one previously, you are good to go! | ||
|
||
## Things to Keep in Mind | ||
|
||
This project uses a **commit then review** process, which means that for approved maintainers, changes can be merged immediately, but will be reviewed by others. | ||
|
||
For other contributors, a maintainer of the project has to approve the pull request. | ||
|
||
# Before You Contribute | ||
|
||
* Check that there is an existing issue in GitHub issues | ||
* Check if there are other pull requests that might overlap or conflict with your intended contribution | ||
|
||
# How to Contribute | ||
|
||
1. Fork the repository | ||
2. Make some changes on a branch on your fork | ||
3. Create a pull request from your branch | ||
|
||
In your pull request, outline: | ||
|
||
* What the changes intend | ||
* How they change the existing code | ||
* If (and what) they breaks | ||
* Start the pull request with the GitHub issue ID, e.g. #123 | ||
|
||
Lastly, please follow the [pull request template](.github/pull_request_template.md) when submitting a pull request! | ||
|
||
Each commit message that is not part of a pull request: | ||
|
||
* Should contain the issue ID like `#123` | ||
* Can contain the tag `[trivial]` for trivial changes that don't relate to an issue | ||
|
||
|
||
|
||
## Coding Styleguides | ||
|
||
We enforce a coding styleguide using `eslint`. As part of your build, run `npm run lint` to check if your code is conforming to the style guide. We do the same for every PR in our CI, so PRs will get rejected if they don't follow the style guide. | ||
|
||
You can fix some of the issues automatically by running `npx eslint . --fix`. | ||
|
||
## Commit Message Format | ||
|
||
This project uses a structured commit changelog format that should be used for every commit. Use `npm run commit` instead of your usual `git commit` to generate commit messages using a wizard. | ||
|
||
```bash | ||
# either add all changed files | ||
$ git add -A | ||
# or selectively add files | ||
$ git add package.json | ||
# then commit using the wizard | ||
$ npm run commit | ||
``` | ||
|
||
# How Contributions get Reviewed | ||
|
||
One of the maintainers will look at the pull request within one week. Feedback on the pull request will be given in writing, in GitHub. | ||
|
||
# Release Management | ||
|
||
The project's committers will release to the [Adobe organization on npmjs.org](https://www.npmjs.com/org/adobe). | ||
Please contact the [Adobe Open Source Advisory Board](https://git.corp.adobe.com/OpenSourceAdvisoryBoard/discuss/issues) to get access to the npmjs organization. | ||
|
Oops, something went wrong.