Bring your identity to the OP collective and signup to get funded via RetroPGF.
Shepherded by the fine folks of Agora.
First, install the dependencies:
yarn
Then, run the development server:
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This app is built on Next.js. To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
Coming soon.
We welcome contributions from the community and are pleased to have you join us in improving this project. To contribute to this project, please follow the steps outlined below:
Before you begin, ensure you have:
- A GitHub account
- Git installed on your machine
- Basic understanding of Git and GitHub workflows
To make a contribution, please follow the git-flow workflow:
-
Fork the Repository
- Navigate to the repository on GitHub.
- Click the "Fork" button on the upper right-hand side of the repository's page.
-
Clone the Forked Repository
- Clone the repository to your local machine by running:
git clone https://github.com/<your-username>/<repository-name>.git
- Replace
<your-username>
with your GitHub username and<repository-name>
with the name of the repository you're contributing to.
- Clone the repository to your local machine by running:
-
Create a New Branch
- Before making any changes, switch to a new branch using the git-flow naming convention:
<your-name>/<feature-or-fix-description>
git checkout -b <your-name>/<feature-or-fix-description>
- Example:
git checkout -b john-doe/add-login-feature
- Before making any changes, switch to a new branch using the git-flow naming convention:
-
Make Your Changes
- Implement your feature or fix.
- Add and commit your changes with a clear and descriptive commit message:
git add . git commit -m "A brief description of the changes"
-
Push Changes to GitHub
- Push your changes to your fork on GitHub:
git push origin <your-name>/<feature-or-fix-description>
- Push your changes to your fork on GitHub:
-
Submit a Pull Request
- On GitHub, navigate to the main page of the repository.
- Click the "Pull request" button next to your branch.
- Review the changes and fill out the pull request form with a clear title and description of what your changes entail and why they are needed.
- Click "Create pull request."
After you submit your pull request, the project maintainers will review your changes. If any further modifications are required, we will provide feedback. Once your pull request is approved, a maintainer will merge your changes into the main branch.
To ensure your fork stays current with the main repository, set up the original repository as an upstream remote:
git remote add upstream https://github.com/original-owner-username/original-repository.git