Jump to content

OpenProjekt: Difference between revisions

From Official NixOS Wiki
Onny (talk | contribs)
Initial page
 
Onny (talk | contribs)
mNo edit summary
 
Line 13: Line 13:
   };
   };
};
};
</syntaxhighlight>OpenProject initialization will take some time, after that it will be available at  <nowiki>http://localhost:6346</nowiki>
</syntaxhighlight>OpenProject initialization will take some time, after that it will be available at  http://localhost:6346. Default login is user <code>admin</code> with password <code>admin</code>.

Latest revision as of 08:41, 14 May 2026

OpenProject is an open-source project management web-app.

Setup

⚠︎
Warning: The OpenProject package and module are not yet upstream and will be available in the upcoming NixOS 26.11 release.

Following example enables OpenProject, running only locally for testing purpose.

environment.etc."openproject-secret".text = "3f9b4e6a7c1d2f8a9b0c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5";
services.openproject = {
  enable = true;
  secrets.keyBaseFile = "/etc/openproject-secret";
  settings = {
    OPENPROJECT_HTTPS = false;
    OPENPROJECT_HSTS = false;
  };
};

OpenProject initialization will take some time, after that it will be available at http://localhost:6346. Default login is user admin with password admin.