Build instructions
Instructions
git clone https://github.com/portainer/portainer.gitcd portainermake depsmake devContribution Guidelines
Was this helpful?
This article explains how to set up your local development environment so you can contribute to the Portainer codebase.
Windows is currently not supported by the Portainer development environment.
Navigate to the folder where you will store Portainer project code. This can be anywhere such as on your desktop or in your downloads folder.
Now, download the Portainer project:
git clone https://github.com/portainer/portainer.gitNext, navigate into the Portainer project you downloaded:
cd portainerInstall the development dependencies:
make depsAnd finally, build and run the project:
make devYou should now be able to access Portainer at https://localhost:9443 and UI dev server runs on http://localhost:8999.
For additional commands, run make help.
The frontend application will update and refresh when you save your changes to any of the sources.
When contributing to the Portainer codebase, please follow our contribution guidelines.
Was this helpful?
Was this helpful?