Thank you for your interest in contributing to our project! Any contribution is highly appreciated and will be reflected on our project ✨
First things first, make sure you read our Code of Conduct to keep our community approachable and respectable.
In this guide, you will get an overview of the project structure and setup, as well as the workflow from opening an issue, creating a PR, reviewing, and merging the PR.
Here are some resources to help you get started with open source contributions:
Our preferred way of providing the opportunity for people to contribute to Noodle is through a process that starts with creating a new issue, the summary of the workflow that you can expect and should adhere to is the following:
-
You see an area of improvement in the code base, this could be a fix, feature, refactoring...etc
-
Create an issue on our Github repository.
-
Wait until a team member discusses the issue with you, and if both parties are in agreement, you can assign yourself to the issue.
-
Start working on the issue, creating a draft pull request and remembering to link your pull request with the issue.
-
Once the work is complete, change the status of the pull request to ready for review.
-
We will review the pull request and if all is good, congratulations! 🥳 you are now a Noodle contributor!
-
If not, we will explain the changes that need to be made for the pull request to be merged.
If you would like to be more involved in the development of Noodle, we would like to invite you to our Discord Server where we can have a chat together and get you involved in the project!
-
Don't work on an issue that has already been assigned to someone else.
-
Don't work on something without getting a team member's approval, this is to not waste your time by making you work on something that won't be merged.
-
Don't demand for your pull request to be approved and merged.
-
Be nice to everyone involved, we are aiming to create a positive community around collaborating and contributing towards Noodle's development.
The Runtime:
The Tech Stack:
Development stuff:
There are a lot of other technologies being used in this project, however these are the most important and influential bits of it.
To clone the repo, you firstly need to fork it, and then clone your copy of noodle locally.
git clone https://github.com/<your-gh-username>/noodle.git
Bun is used as the package manager of Noodle, with Bun, you actually don't need to have NodeJS installed at all on your system to be able to run Noodle. The only tool you need to install dependencies & run Noodle is Bun!
To install bun, head over to their website which will tell you how to get it installed on your system.
To check that you have Bun installed, simply run the following command:
bun --version
If this commands outputs a version number, you're all good to go.
With bun installed on your machine, the next step would be to install the dependencies that Noodle relies upon to work, to do this, run the following command:
bun install
Now that Bun & dependencies has been installed, it's time to configure your environment variables so that the project works as expected:
-
Duplicate the
.env.example
file as just.env
-
Populate the values with your own
At Noodle, we are using Turso as our production database, but since this is based on Sqlite, it makes it very easy to run things locally, all you need to have a local DB working is the following in the .env
file:
DATABASE_URL="file:./dev.db"
This will create a local file in the root of the repository called dev.db
and things will be stored there, no need to install any technologies to get a database up and running!
Clerk is our choice of authentication service for Noodle, it's true that it is a paid service but arguably for running a self hosted version of Noodle it is even easier then setting things up yourself especially with OAuth. To configure clerk you need to do the following:
-
Create your account through Clerk's dashboard
-
Add a new application
-
Set up it's name and how you wish to sign in
-
In the sidebar, go to "API Keys"
-
Copy the publishable key into
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
in your .env file -
Copy the secret key into
CLERK_SECRET_KEY
in your .env file
And now you got Auth!
Note Upstash is used to provide rate-limiting capabilities to Noodle, which is optional locally as that it's really only needed in the production version.
- Create your account through Upstash's dashboard
- Click on "Create database"
- Give it a name and a region
- Enable TLS (SSL) encryption
- Press create
- In the "Connect to your database" section, select "@upstash/redis"
- Copy the url into your
.env
file asREDIS_URL
key - Copy the token into your
.env
file asREDIS_TOKEN
key
And that's all for the redis part!
# Run the project's dev server
bun dev
# Build the project
bun run build
# Run the built project in production mode
bun start
# Run the typecheck script
bun typecheck
# Lint using ESLint
bun lint
# Format using Prettier
bun format
Again, thank you so much for your interest in contributing to Noodle, we really appreciate it, and if there is anything we can do to help your journey, make sure to join our Discord Server.