Contributing
Continuous Integration (CI): Each pull request gets automatically tested by gitea. If any errors are detected, it will block pull requests until they're resolved.
Dependency Management: We use the Nix package manager to manage dependencies and ensure reproducibility, making your development process more robust.
Supported Operating Systems
- Linux
- macOS
Getting Started with the Development Environment
Let's get your development environment up and running:
-
Install Nix Package Manager:
- You can install the Nix package manager by either downloading the Nix installer or running this command:
-
Install direnv:
- To automatically setup a devshell on entering the directory
-
Add direnv to your shell:
- Direnv needs to hook into your shell to work.
You can do this by executing following command. The example below will setup direnv for
zsh
andbash
- Direnv needs to hook into your shell to work.
You can do this by executing following command. The example below will setup direnv for
-
Create a Gitea Account:
- Register an account on https://git.clan.lol
- Fork the clan-core repository
- Clone the repository and navigate to it
- Add a new remote called upstream:
-
Create an access token:
- Log in to Gitea.
- Go to your account settings.
- Navigate to the Applications section.
- Click Generate New Token.
- Name your token and select all available scopes.
- Generate the token and copy it for later use.
- Your access token is now ready to use with all permissions.
-
Register Your Gitea Account Locally:
- Execute the following command to add your Gitea account locally:
- Fill out the prompt as follows:
- URL of Gitea instance:
https://git.clan.lol
- Name of new Login [git.clan.lol]:
- Do you have an access token? Yes
- Token:
- Set Optional settings: No
- URL of Gitea instance:
-
Allow .envrc:
- When you enter the directory, you'll receive an error message like this:
- Execute
direnv allow
to automatically execute the shell script.envrc
when entering the directory.
-
(Optional) Install Git Hooks:
- To syntax check your code you can run:
- To make this automatic install the git hooks
-
Open a Pull Request:
- To automatically open up a pull request you can use our tool called:
Debugging
Here are some methods for debugging and testing the clan-cli:
See all possible packages and tests
To quickly show all possible packages and tests execute:
Under checks
you will find all tests that are executed in our CI. Under packages
you find all our projects.
git+file:///home/lhebendanz/Projects/clan-core
ββββapps
β ββββx86_64-linux
β ββββinstall-vm: app
β ββββinstall-vm-nogui: app
ββββchecks
β ββββx86_64-linux
β ββββborgbackup omitted (use '--all-systems' to show)
β ββββcheck-for-breakpoints omitted (use '--all-systems' to show)
β ββββclan-dep-age omitted (use '--all-systems' to show)
β ββββclan-dep-bash omitted (use '--all-systems' to show)
β ββββclan-dep-e2fsprogs omitted (use '--all-systems' to show)
β ββββclan-dep-fakeroot omitted (use '--all-systems' to show)
β ββββclan-dep-git omitted (use '--all-systems' to show)
β ββββclan-dep-nix omitted (use '--all-systems' to show)
β ββββclan-dep-openssh omitted (use '--all-systems' to show)
β ββββ"clan-dep-python3.11-mypy" omitted (use '--all-systems' to show)
ββββpackages
β ββββx86_64-linux
β ββββclan-cli omitted (use '--all-systems' to show)
β ββββclan-cli-docs omitted (use '--all-systems' to show)
β ββββclan-ts-api omitted (use '--all-systems' to show)
β ββββclan-app omitted (use '--all-systems' to show)
β ββββdefault omitted (use '--all-systems' to show)
β ββββdeploy-docs omitted (use '--all-systems' to show)
β ββββdocs omitted (use '--all-systems' to show)
β ββββeditor omitted (use '--all-systems' to show)
ββββtemplates
ββββdefault: template: Initialize a new clan flake
ββββnew-clan: template: Initialize a new clan flake
You can execute every test separately by following the tree path nix build .#checks.x86_64-linux.clan-pytest
for example.
Test Locally in Devshell with Breakpoints
To test the cli locally in a development environment and set breakpoints for debugging, follow these steps:
- Run the following command to execute your tests and allow for debugging with breakpoints:
You can place
breakpoint()
in your Python code where you want to trigger a breakpoint for debugging.
Test Locally in a Nix Sandbox
To run tests in a Nix sandbox, you have two options depending on whether your test functions have been marked as impure or not:
Running Tests Marked as Impure
If your test functions need to execute nix build
and have been marked as impure because you can't execute nix build
inside a Nix sandbox, use the following command:
This command will run the impure test functions.
Running Pure Tests
For test functions that have not been marked as impure and don't require executing nix build
, you can use the following command:
This command will run all pure test functions.
Inspecting the Nix Sandbox
If you need to inspect the Nix sandbox while running tests, follow these steps:
- Insert an endless sleep into your test code where you want to pause the execution. For example:
- Use
cntr
andpsgrep
to attach to the Nix sandbox. This allows you to interactively debug your code while it's paused. For example:
Or you can also use the nix breakpoint hook
Standards
- Every new module name should be in kebab-case.
- Every fact definition, where possible should be in kebab-case.
- Every vars definition, where possible should be in kebab-case.
- Command line help descriptions should start capitalized and should not end in a period.