docs: note how to connect to the database
[?]
Apr 5, 2021, 5:06 PM
DOP3UP77XYUYYD6O55ORTSHVO52UTYIT67DIYNN6S35JJMK43V3ACDependencies
- [2]
L4JYZ7BMdoc: switch shell session code blocks to `console` type. - [3]
3JXCTKECAdd markdown files for documentation - [4]
DWMH6NFBdocs: mention foreman under hacking
Change contents
- replacement in doc/manual/src/hacking.md at line 6
```console```console - edit in doc/manual/src/hacking.md at line 71
```## Development Tasks### Connecting to the databaseAssuming you're running the the default configuration with `foreman start`,open an interactive session with Postgres via:```console$ psql --host localhost --port 64444 hydra```### Runinng the builder locallyFor `hydra-queue-runner` to successfully build locally, yourdevelopment user will need to be "trusted" by your Nix store.Add yourself to the `trusted_users` option of `/etc/nix/nix.conf`.On NixOS:```nix{nix.trustedUsers = [ "YOURUSER" ];}```Off NixOS, change `/etc/nix/nix.conf`:```conftrusted-users = root YOURUSERNAME