(How) do you automate setting up your local development environment?
(How) do you automate setting up your local development environment?
In a lot of projects, this is usually done via README. It tells you what running dependencies to install and how to run certain commands.
This can get harder to maintain as things change, the project grows, and complexity increases.
I see two parts to automate here: actually setting up the environment, and running the application or orchestrating multiple apps.
How do you address this?
You're viewing a single thread.
All Comments
23 comments
- direnv
- nixpkgs (with flakes enabled)
- committed flake.nix and flake.lock
- Makefile or several shell scripts in
bin/
for common tasks
17 0 Reply
23 comments
Scroll to top