Learn more about Kukkee at our website.
Experience Kukkee for yourself by getting access to a hosted Kukkee deployment.
Come say hello at our chatroom for discussions, voicing new ideas or getting help!
We're happy that you've decided to get your own Kukkee up and running!
This guide is divided into three sections: database, customization, and deployment.
Kukkee uses MongoDB, hence you would need a MongoDB server hosted somewhere.
In case you don't have a hosted MongoDB server, you can get started with MongoDB Atlas for free. If you're planning to use Vercel to deploy your own Kukkee, you must add all IP addresses (0.0.0.0/0) to the IP access list of your Atlas cluster since it is not possible to determine the IP addresses of Vercel deployments.
-
Fork this repo to your own GitHub account and then clone it.
git clone https://github.com/<your-username>/Kukkee.git
-
Go to the project folder
cd Kukkee
-
To change the logo, replace
/public/logo.svg
with your own logo. -
To change the favicon, replace
/public/favicon.svg
with your own favicon. -
To change the logo height, logo width and brand color, edit
src/styles/variables.scss
Kukkee is built with Next.js. Hence, you would need to deploy Kukkee to a platform that supports Next.js.
For example, Vercel, AWS EC2 or a DigitalOcean Droplet.
In case you don't have a platform already, you can get started with Vercel for free.
- Go to https://vercel.com/dashboard
- Create a new project
- Import your forked git repository
- Set the environment variables (according to the instructions in .env.example)
- Deploy
We're thrilled that you'd like to contribute to Kukkee!
If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them. Join our community on Gitter or start a new discussion on GitHub!
We'd also love PRs. If you're thinking of a large PR, please open up an issue first to discuss your proposed changes with a project maintainer!
First, make sure you have Node.js and MongoDB installed. Then, to develop locally:
-
Fork this repo to your own GitHub account and then clone it.
git clone https://github.com/<your-username>/Kukkee.git
-
Go to the project folder
cd Kukkee
-
Create a new branch:
git checkout -b MY_BRANCH_NAME
-
Install the dependencies with:
npm i
-
Copy
.env.example
to.env
cp .env.example .env
-
Set the env variables according to the instructions in the .env file
-
Start developing and watch for code changes:
npm run dev
You can build the project with:
npm run build
Please be sure that you can make a full production build before pushing code.
- Fork and clone the repository.
- Configure and install the dependencies.
- Make sure the tests and linters pass on your machine.
- Create a new branch.
- Make your change, add tests, and make sure the tests still pass.
- Push to your fork and open a pull request against the
main
branch. - Pat your self on the back and wait for your pull request to be reviewed and merged.
Here are a few things you can do that will increase the likelihood of your PR being accepted:
- Keep your changes as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
- Write a good commit message.
"WIP" PRs are also welcome to get feedback early on, or if there is something blocking you.
Special thanks to these amazing projects which help power Kukkee:
Kukkee is distributed under the MIT License.