"First, thanks for considering contributing to my project. It really means a lot!" - @andrasbacsai
You can ask for guidance anytime on our Discord server in the #contribute
channel.
Follow the steps below for your operating system:
-
Install
docker-ce
, Docker Desktop (or similar):- Docker CE (recommended):
- Install Windows Subsystem for Linux v2 (WSL2) by following this guide: Install WSL
- After installing WSL2, install Docker CE for your Linux distribution by following this guide: Install Docker Engine
- Make sure to choose the appropriate Linux distribution (e.g., Ubuntu) when following the Docker installation guide
- Install Docker Desktop (easier):
- Download and install Docker Desktop for Windows
- Ensure WSL2 backend is enabled in Docker Desktop settings
- Docker CE (recommended):
-
Install Spin:
- Follow the instructions to install Spin on Windows from the Spin documentation
-
Install Orbstack, Docker Desktop (or similar):
- Orbstack (recommended, as it is a faster and lighter alternative to Docker Desktop):
- Download and install Orbstack
- Docker Desktop:
- Download and install Docker Desktop for Mac
- Orbstack (recommended, as it is a faster and lighter alternative to Docker Desktop):
-
Install Spin:
- Follow the instructions to install Spin on MacOS from the Spin documentation
-
Install Docker Engine, Docker Desktop (or similar):
- Docker Engine (recommended, as there is no VM overhead):
- Follow the official Docker Engine installation guide for your Linux distribution
- Docker Desktop:
- If you want a GUI, you can use Docker Desktop for Linux
- Docker Engine (recommended, as there is no VM overhead):
-
Install Spin:
- Follow the instructions to install Spin on Linux from the Spin documentation
After installing Docker (or Orbstack) and Spin, verify the installation:
- Open a terminal or command prompt
- Run the following commands:
You should see version information for both Docker and Spin.
docker --version spin --version
-
Fork the Coolify repository to your GitHub account.
-
Install a code editor on your machine (below are some popular choices, choose one):
-
Visual Studio Code (recommended free):
- Windows/macOS/Linux: Download and install from https://code.visualstudio.com/download
-
Cursor (recommended but paid for getting the full benefits):
- Windows/macOS/Linux: Download and install from https://www.cursor.com/
-
Zed (very fast code editor):
- macOS/Linux: Download and install from https://zed.dev/download
- Windows: Not available yet
-
-
Clone the Coolify Repository from your fork to your local machine
- Use
git clone
in the command line - Use GitHub Desktop (recommended):
- Download and install from https://desktop.github.com/
- Open GitHub Desktop and login with your GitHub account
- Click on
File
->Clone Repository
selectgithub.com
as the repository location, then select your forked Coolify repository, choose the local path and then clickClone
- Use
-
Open the cloned Coolify Repository in your chosen code editor.
-
In the Code Editor, locate the
.env.development.example
file in the root directory of your local Coolify repository. -
Duplicate the
.env.development.example
file and rename the copy to.env
. -
Open the new
.env
file and review its contents. Adjust any environment variables as needed for your development setup. -
If you encounter errors during database migrations, update the database connection settings in your
.env
file. Use the IP address or hostname of your PostgreSQL database container. You can find this information by runningdocker ps
after executingspin up
. -
Save the changes to your
.env
file.
-
Open a terminal in the local Coolify directory.
-
Run the following command in the terminal (leave that terminal open):
spin up
Note: You may see some errors, but don't worry; this is expected.
-
If you encounter permission errors, especially on macOS, use:
sudo spin up
Note: If you change environment variables afterwards or anything seems broken, press Ctrl + C to stop the process and run spin up
again.
-
Access your Coolify instance:
- URL:
http://localhost:8000
- Login:
[email protected]
- Password:
password
- URL:
-
Additional development tools:
- Laravel Horizon (scheduler):
http://localhost:8000/horizon
Note: Only accessible when logged in as root user - Mailpit (email catcher):
http://localhost:8025
- Telescope (debugging tool):
http://localhost:8000/telescope
Note: Disabled by default (so the database is not overloaded), enable by adding the following environment variable to your.env
file:TELESCOPE_ENABLED=true
- Laravel Horizon (scheduler):
When working on Coolify, keep the following in mind:
-
Database Migrations: After switching branches or making changes to the database structure, always run migrations:
docker exec -it coolify php artisan migrate
-
Resetting Development Setup: To reset your development setup to a clean database with default values:
docker exec -it coolify php artisan migrate:fresh --seed
-
Troubleshooting: If you encounter unexpected behavior, ensure your database is up-to-date with the latest migrations and if possible reset the development setup to eliminate any envrionement specific issues.
Remember, forgetting to migrate the database can cause problems, so make it a habit to run migrations after pulling changes or switching branches.
To add a new service to Coolify, please refer to our documentation: Adding a New Service
-
After making changes or adding a new service:
- Commit your changes to your forked repository.
- Push the changes to your GitHub account.
-
Creating the Pull Request (PR):
- Navigate to the main Coolify repository on GitHub.
- Click the "Pull requests" tab.
- Click the green "New pull request" button.
- Choose your fork and branch as the compare branch.
- Click "Create pull request".
-
Filling out the PR details:
- Give your PR a descriptive title.
- In the description, explain the changes you've made.
- Reference any related issues by using keywords like "Fixes #123" or "Closes #456".
-
Important note: Always set the base branch for your PR to the
next
branch of the Coolify repository, not themain
branch. -
Submit your PR:
- Review your changes one last time.
- Click "Create pull request" to submit.
After submission, maintainers will review your PR and may request changes or provide feedback.