Eintopf: Difference between revisions
No edit summary |
Add admin login config |
||
Line 2: | Line 2: | ||
== Setup == | == Setup == | ||
A minimal local example setup would look like this<syntaxhighlight lang="nix"> | A minimal local example setup would look like this | ||
services.eintopf | |||
</syntaxhighlight>The web service will be available at http://localhost:3333 | <syntaxhighlight lang="nix"> | ||
services.eintopf = { | |||
enable = true; | |||
settings = { | |||
EINTOPF_ADMIN_EMAIL = "test@example.org"; | |||
EINTOPF_ADMIN_PASSWORD = "test123"; | |||
}; | |||
}; | |||
</syntaxhighlight> | |||
The web service will be available at http://localhost:3333. The administration login page is available at http://localhost:3333/backstage where you can use the credentials specified above. | |||
[[Category:Server]] | [[Category:Server]] | ||
[[Category:Web Applications]] | [[Category:Web Applications]] |
Revision as of 11:34, 10 July 2024
Eintopf is a community event calendar for groups and places.
Setup
A minimal local example setup would look like this
services.eintopf = {
enable = true;
settings = {
EINTOPF_ADMIN_EMAIL = "test@example.org";
EINTOPF_ADMIN_PASSWORD = "test123";
};
};
The web service will be available at http://localhost:3333. The administration login page is available at http://localhost:3333/backstage where you can use the credentials specified above.