Skip to content

Commit ae58e3c

Browse files
justlevinePathan-Amaankhanashutoshgautamsayushnirwaliamimmanuelraj
committed
initial (public) commit
Co-authored-by: Amaan Khan <[email protected]> Co-authored-by: Ashutosh Gautam <[email protected]> Co-authored-by: ayushnirwal <[email protected]> Co-authored-by: Immanuel Raj <[email protected]> Co-authored-by: Riddhesh Sanghvi <[email protected]> Co-authored-by: Shah Shalin <[email protected]> Co-authored-by: Swanand01 <[email protected]> Co-authored-by: Ta5r <[email protected]>
0 parents  commit ae58e3c

File tree

219 files changed

+39429
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+39429
-0
lines changed

.env.example

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Enable if connecting to a self-signed cert
2+
# NODE_TLS_REJECT_UNAUTHORIZED=0
3+
4+
# The headless frontend domain URL. Uncomment this line and ensure the value matches the URL used by your frontend app.
5+
# NEXT_PUBLIC_URL=http://localhost:3000
6+
7+
# The WordPress "frontend" domain URL
8+
NEXT_PUBLIC_WORDPRESS_URL=https://headless-demo.local
9+
10+
# The WordPress GraphQL endpoint
11+
NEXT_PUBLIC_GRAPHQL_ENDPOINT=graphql
12+
13+
# The WordPress Uploads directory path
14+
# NEXT_PUBLIC_WORDPRESS_UPLOADS_PATH=/wp-content/uploads
15+
16+
# The WordPress REST URL Prefix
17+
# NEXT_PUBLIC_WORDPRESS_REST_URL_PREFIX=/wp-json
18+
19+
# Token used for authenticating GraphQL introspection queries
20+
INTROSPECTION_TOKEN=

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/examples/**/*

.eslintrc.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"node": true
5+
},
6+
"extends": "@snapwp/eslint-config",
7+
"ignorePatterns": [
8+
"**/node_modules/**",
9+
"**/dist/**",
10+
"**/dist-types/**",
11+
"out/**",
12+
"data/**",
13+
"assets/**/*.js",
14+
"coverage/**",
15+
"**/config/*.js",
16+
"**/dist",
17+
"**/__generated/"
18+
],
19+
"globals": {
20+
"globalThis": "readonly"
21+
},
22+
"overrides": [
23+
// Disable n/no-process-env for codegen.ts file
24+
{
25+
"files": [ "**/codegen.ts", "**/*.test.*", "**/jest.setup.js" ],
26+
"rules": {
27+
"n/no-process-env": "off"
28+
}
29+
}
30+
]
31+
}

.github/CODE_OF_CONDUCT.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, caste, color, religion, or sexual
10+
identity and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
- Focusing on what is best not just for us as individuals, but for the overall
26+
community
27+
28+
Examples of unacceptable behavior include:
29+
30+
- The use of sexualized language or imagery, and sexual attention or advances of
31+
any kind
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email address,
35+
without their explicit permission
36+
- Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official email address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement at
63+
64+
All complaints will be reviewed and investigated promptly and fairly.
65+
66+
All community leaders are obligated to respect the privacy and security of the
67+
reporter of any incident.
68+
69+
## Enforcement Guidelines
70+
71+
Community leaders will follow these Community Impact Guidelines in determining
72+
the consequences for any action they deem in violation of this Code of Conduct:
73+
74+
### 1. Correction
75+
76+
**Community Impact**: Use of inappropriate language or other behavior deemed
77+
unprofessional or unwelcome in the community.
78+
79+
**Consequence**: A private, written warning from community leaders, providing
80+
clarity around the nature of the violation and an explanation of why the
81+
behavior was inappropriate. A public apology may be requested.
82+
83+
### 2. Warning
84+
85+
**Community Impact**: A violation through a single incident or series of
86+
actions.
87+
88+
**Consequence**: A warning with consequences for continued behavior. No
89+
interaction with the people involved, including unsolicited interaction with
90+
those enforcing the Code of Conduct, for a specified period of time. This
91+
includes avoiding interactions in community spaces as well as external channels
92+
like social media. Violating these terms may lead to a temporary or permanent
93+
ban.
94+
95+
### 3. Temporary Ban
96+
97+
**Community Impact**: A serious violation of community standards, including
98+
sustained inappropriate behavior.
99+
100+
**Consequence**: A temporary ban from any sort of interaction or public
101+
communication with the community for a specified period of time. No public or
102+
private interaction with the people involved, including unsolicited interaction
103+
with those enforcing the Code of Conduct, is allowed during this period.
104+
Violating these terms may lead to a permanent ban.
105+
106+
### 4. Permanent Ban
107+
108+
**Community Impact**: Demonstrating a pattern of violation of community
109+
standards, including sustained inappropriate behavior, harassment of an
110+
individual, or aggression toward or disparagement of classes of individuals.
111+
112+
**Consequence**: A permanent ban from any sort of public interaction within the
113+
community.
114+
115+
## Attribution
116+
117+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118+
version 2.1, available at
119+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120+
121+
Community Impact Guidelines were inspired by
122+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123+
124+
For answers to common questions about this code of conduct, see the FAQ at
125+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126+
[https://www.contributor-covenant.org/translations][translations].
127+
128+
[homepage]: https://www.contributor-covenant.org
129+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130+
[Mozilla CoC]: https://github.com/mozilla/diversity
131+
[FAQ]: https://www.contributor-covenant.org/faq
132+
[translations]: https://www.contributor-covenant.org/translations

.github/CONTRIBUTING.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Contributing to SnapWP
2+
3+
Thank you for considering contributing to SnapWP! We appreciate your help in improving this open-source project. By participating in this project, you agree to abide by our [Code of Conduct](./CODE_OF_CONDUCT.md) and adhere to the guidelines outlined below.
4+
5+
## Code of Conduct
6+
7+
Please read and follow our [Code of Conduct](./CODE_OF_CONDUCT.md) to ensure a welcoming environment for all contributors. If you encounter any issues or wish to report a concern, please email us at [[email protected]](mailto:[email protected]).
8+
9+
## How to Contribute
10+
11+
### Reporting Issues
12+
13+
> [!IMPORTANT]
14+
>
15+
> **Do not report potential security vulnerabilities in the public GitHub repository.** Instead, please email us at [[email protected]](mailto:[email protected]).
16+
>
17+
> For more information, refer to our [Security Policy](./SECURITY.md).
18+
19+
If you find a bug or have a feature request, please open an issue in the [GitHub Issues](https://github.com/rtCamp/snapwp/issues) section. Provide as much detail as possible, including:
20+
21+
1. A clear description of the issue.
22+
2. Steps to reproduce the issue.
23+
3. Any relevant screenshots or logs.
24+
25+
In general, we recommend you adhere to the GitHub issue templates included in this repository whenever possible.
26+
27+
> [!TIP]
28+
>
29+
> **Note**: Before opening a new issue, please search the [GitHub Issues](https://github.com/rtCamp/snapwp/issues) to see if a similar issue has already been reported.
30+
>
31+
> If you find an existing issue that matches your concern, you can upvote the issue or add a comment to provide additional context, reproduction steps, or any other relevant information to help the ticket advance.
32+
33+
### Submitting Code
34+
35+
1. **Fork the repository**: Click the "`Fork`" button in the top right corner of the repository page to create your own copy of the project.
36+
37+
2. **Make your changes**: Implement the changes you'd like to contribute. Ensure that your code adheres to the project's [coding standards and guidelines](../DEVELOPMENT.md#code-quality--code-standards).
38+
39+
> [!TIP]
40+
> For detailed information on the project's directory structure, local development setup, and testing processes, refer to the [DEVELOPMENT.md](../DEVELOPMENT.md) document.
41+
42+
3. **Write tests**: If possible, add/update the necessary Integration/Functional/etc. tests for your changes to ensure that everything works correctly.
43+
44+
4. **Commit and push your changes**: Once you're satisfied with your changes, commit them to your forked repository and push them to your branch.
45+
46+
5. **Create a pull request**: Submit a `Pull Request` to the `develop` branch of this repository. Select your branch and provide a detailed description of your changes.
47+
Pull Request titles should be concise, descriptive, and follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format. E.g., `feat: Add new feature`.
48+
49+
#### Review Process
50+
51+
1. Your pull request will be reviewed by a maintainer. We'll review all PRs, and make suggestions or changes as needed.
52+
2. Once approved, your PR will be squashed and merged into the `develop` branch.
53+
54+
### Contributing Documentation
55+
56+
We aim to maintain thorough documentation for all aspects of the project. Please contribute by documenting any new features, endpoints, or functionalities you implement.
57+
58+
You can refer to existing documentation in the [`docs`](../docs) directory for examples of how to structure and format your documentation.
59+
60+
## Thank You!
61+
62+
We appreciate your time and contributions to the `SnapWP` project. Your efforts help make this project better for everyone!

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug report
2+
description: Create a bug report for SnapWP
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: >-
7+
Thank you for taking the time to report a possible bug!
8+
9+
Please remember, a bug report is not the place to ask questions. You can
10+
use Discord for that, or start a topic in [GitHub
11+
Discussions](https://github.com/rtCamp/snapwp/discussions).
12+
13+
- type: textarea
14+
attributes:
15+
label: Description
16+
description: >-
17+
Please write a brief description of the bug, including what you expected
18+
and what actually happened.
19+
validations:
20+
required: true
21+
22+
- type: input
23+
attributes:
24+
label: Link to the code that reproduces this issue
25+
description: |
26+
A link to a **public**[GitHub repository or a CodeSandbox minimal reproduction.
27+
28+
**Skipping this/providing an invalid link may result in the issue being closed.**
29+
placeholder: 'https://github.com/user/my-minimal-snapwp-reproduction'
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
attributes:
35+
label: To Reproduce
36+
description: A step-by-step description of how to reproduce the issue, based on the linked reproduction.
37+
placeholder: |
38+
1. Start the application in development (next dev)
39+
2. Click X
40+
3. Y will happen
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
attributes:
46+
label: Additional context
47+
description: >-
48+
Add any other context about the problem here that might help us investigate, such as screenshots, error
49+
logs, etc.
50+
51+
- type: textarea
52+
attributes:
53+
label: Frontend Environment
54+
description: Please provide details about your frontend environment. We recommend you run `next info` and share the output.
55+
render: bash
56+
57+
- type: textarea
58+
attributes:
59+
label: Backend Environment
60+
description: Please provide details about your backend environment. We recommend you go Admin > Site Health > Info and share the output.
61+
render: bash
62+
63+
- type: checkboxes
64+
attributes:
65+
label: Please confirm that you have searched existing issues in the repo.
66+
description: >-
67+
You can do this by searching
68+
https://github.com/rtCamp/snapwp/issues and making sure the
69+
bug has not been reported before.
70+
options:
71+
- label: 'Yes'
72+
required: true

.github/ISSUE_TEMPLATE/config,yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: General Support Request
4+
url: https://github.com/rtCamp/snapwp/discussions
5+
about: For general help requests, create a new topic in Github Discussions
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Feature request
2+
description: Suggest a new feature or enhancement for SnapWP
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: >-
7+
Thank you for taking the time to submit a feature request.
8+
9+
10+
Please make sure to search the repo for [existing feature
11+
requests](@todo) before creating a new one.
12+
- type: textarea
13+
attributes:
14+
label: What problem does this address?
15+
description: >-
16+
Please describe the problem you are trying to solve, including why you
17+
think this is a problem.
18+
placeholder: I'm always frustrated when [...]
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: What is your proposed solution?
24+
description: >-
25+
Please provide a clear and concise description of your suggested
26+
solution.
27+
placeholder: What I'd like to see happen is [...]
28+
validations:
29+
required: true
30+
- type: textarea
31+
attributes:
32+
label: What alternatives have you considered?
33+
description: >-
34+
Please list any alternatives you have considered, and why you think your
35+
solution is better.
36+
- type: textarea
37+
attributes:
38+
label: Additional Context
39+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)