Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/modules/decisions/pages/use-bruno.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Chosen option: "`Bruno`", because
- Open-source
- Supports both GraphQL and REST.
- Uses local files for storing API collections, enabling integration with Git.

== Consequences

- The project will use Bruno to maintain API request collections directly within the repository.
Expand Down
1 change: 1 addition & 0 deletions docs/modules/developer/nav.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.Developer Docs
* xref:dev_environment.adoc[]
* xref:jj.adoc[]
* xref:extensions.adoc[]
* xref:test_plan.adoc[]
9 changes: 8 additions & 1 deletion docs/modules/developer/pages/dev_environment.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,23 @@ $ sudo vim /etc/nix/nix.conf

[source, text]
----
trusted-users = root camilowser
trusted-users = root <your-user>
----

- 3. Reboot nix service

.MacOS
[source, bash]
----
sudo launchctl kickstart -k system/org.nixos.nix-daemon
----

.Linux
[source, bash]
----
sudo systemctl restart nix-daemon.service
----

== Direnv

Install https://direnv.net/docs/installation.html#from-system-packages[Direnv] to automatically load _Devenv_ on entering the directory and load other system settings.
Expand Down
4 changes: 4 additions & 0 deletions docs/modules/developer/pages/jj.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= Using Jujutsu

We recommend using https://github.com/jj-vcs/jj[_Jujutsu_] tool for working with Git repositories. Is totally optional
but can make developer life easier by managing branches and merge flows.
Loading