mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
1 KiB
1 KiB
Contributing to Coolify
How to contribute
- This is a temporary guide until the v5 docker architecture & development setup is ready.
- Fork the repository
- Create a new branch or create a branch with the same name as one of the upstream branches
- Sync your fork with the upstream branches
- Clone and checkout the code locally
- Copy
.env.exampleto a new.envfile (no changes should be needed) - As the v5 docker architecture is not ready yet, you need to install PHP, composer and bun locally 6.1. Install PHP, composer and the laravel installer https://laravel.com/docs/12.x/installation#installing-php 6.2. Install bun https://bun.com/docs/installation
- Run
composer installto install PHP dependencies - Run
bun installto install JS dependencies - Run
composer run devto create an sqlite database, generate an APP_KEY, migrate the database and run the development server - Access the application at
http://localhost:8000