Coder est un environnement de développement open-source intégré à la plateforme Arkhn et permettant de développer en son sein pour :









→ Renvoyer sur le README


On many environments hosted by the clients, the https port toward Github is closed by the firewall. The only way to call github is via the ssh.github.com:443 connection.
Generate a key pair dedicated to the client
ssh-keygen -t ed25519 -C "<your-email>" -f /tmp/id_coder_<client_name>
Display the public key
cat /tmp/id_coder_<client_name>.pub
Display the base64-encoded private key
cat /tmp/id_coder_<client_name> | base64
In the "SSH and GPG keys" tab of the settings menu, click on "New SSH key". Copy/paste the public key in the "Key" field.

When creating a new workspace, copy/paste the base64-encoded private key in the github_secret field.
