diff options
| -rw-r--r-- | www/Makefile | 1 | ||||
| -rw-r--r-- | www/vikunja/Makefile | 36 | ||||
| -rw-r--r-- | www/vikunja/distinfo | 7 | ||||
| -rw-r--r-- | www/vikunja/files/config.yml.sample | 502 | ||||
| -rw-r--r-- | www/vikunja/files/patch-pkg_doctor_files__unix.go | 11 | ||||
| -rw-r--r-- | www/vikunja/files/vikunja.in | 22 | ||||
| -rw-r--r-- | www/vikunja/pkg-descr | 3 | ||||
| -rw-r--r-- | www/vikunja/pkg-plist | 5 |
8 files changed, 587 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 7a68465051d8..02be27d73426 100644 --- a/www/Makefile +++ b/www/Makefile @@ -2675,6 +2675,7 @@ SUBDIR += vertx SUBDIR += vger SUBDIR += vigil + SUBDIR += vikunja SUBDIR += vimb SUBDIR += vinyl09 SUBDIR += visitors diff --git a/www/vikunja/Makefile b/www/vikunja/Makefile new file mode 100644 index 000000000000..f0cc28214b76 --- /dev/null +++ b/www/vikunja/Makefile @@ -0,0 +1,36 @@ +PORTNAME= vikunja +DISTVERSIONPREFIX=v +DISTVERSION= 2.3.0 +CATEGORIES= www +MASTER_SITES= LOCAL/decke:ui +DISTFILES= vikunja-frontend-${DISTVERSION}.tar.gz:ui + +MAINTAINER= decke@FreeBSD.org +COMMENT= Todo-app to organize your life +WWW= https://vikunja.io + +LICENSE= AGPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules +USE_GITHUB= yes +GH_ACCOUNT= go-vikunja + +USE_RC_SUBR= vikunja + +GO_MODULE= code.vikunja.io/api +GO_MOD_DIST= https://raw.githubusercontent.com/go-vikunja/vikunja/refs/tags/v${DISTVERSION}/ +GO_BUILDFLAGS= -tags osusergo -ldflags " \ + -X code.vikunja.io/api/pkg/version.Version=${DISTVERSION} \ + -X main.Tags=osusergo" + +post-extract: + ${TAR} -xf ${DISTDIR}/${DIST_SUBDIR}/vikunja-frontend-${DISTVERSION}.tar.gz -C ${WRKSRC}/frontend + +post-install: + ${MKDIR} ${STAGEDIR}/var/db/${PORTNAME} + ${MKDIR} ${STAGEDIR}/var/log/${PORTNAME} + ${MKDIR} ${STAGEDIR}/var/run/${PORTNAME} + ${INSTALL_DATA} ${PATCHDIR}/config.yml.sample ${STAGEDIR}/var/db/${PORTNAME}/config.yml.sample + +.include <bsd.port.mk> diff --git a/www/vikunja/distinfo b/www/vikunja/distinfo new file mode 100644 index 000000000000..876753d8dadc --- /dev/null +++ b/www/vikunja/distinfo @@ -0,0 +1,7 @@ +TIMESTAMP = 1776158934 +SHA256 (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/vikunja-frontend-2.3.0.tar.gz) = ad08b5ed579b3a2235383392c9291c4c484b4833ae6800651eb4cad51aa748e6 +SIZE (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/vikunja-frontend-2.3.0.tar.gz) = 2447597 +SHA256 (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/go.mod) = 1b60afd85584c6423685c8131755025f0147304758020dc765c378b328e93038 +SIZE (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/go.mod) = 9805 +SHA256 (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/go-vikunja-vikunja-v2.3.0_GH0.tar.gz) = 097513157bad9b5ba882a32a6b80ebd7905f2dd8f0837da3f002bf138ca40a38 +SIZE (go/www_vikunja/go-vikunja-vikunja-v2.3.0_GH0/go-vikunja-vikunja-v2.3.0_GH0.tar.gz) = 8937820 diff --git a/www/vikunja/files/config.yml.sample b/www/vikunja/files/config.yml.sample new file mode 100644 index 000000000000..6699fdde0266 --- /dev/null +++ b/www/vikunja/files/config.yml.sample @@ -0,0 +1,502 @@ +# service: + # This secret is used to sign JWT tokens and for other cryptographic operations. + # Default is a random secret which will be generated at each startup of Vikunja. + # (This means all already issued tokens will be invalid once you restart Vikunja) + # secret: "<a-secret>" + # Deprecated: use service.secret instead. If set, its value will be copied to service.secret. + # JWTSecret: "<jwt-secret>" + # The duration of the issued JWT tokens in seconds. + # The default is 259200 seconds (3 Days). + # jwtttl: 259200 + # The duration of the "remember me" time in seconds. When the login request is made with + # the long param set, the token returned will be valid for this period. + # The default is 2592000 seconds (30 Days). + # jwtttllong: 2592000 + # The duration of short-lived JWT tokens in seconds. These tokens are used together with + # refresh tokens for session-based authentication. + # The default is 600 seconds (10 minutes). + # jwtttlshort: 600 + # The interface on which to run the webserver + # interface: ":3456" + # Path to Unix socket. If set, it will be created and used instead of tcp + # unixsocket: "" + # Permission bits for the Unix socket. Note that octal values must be prefixed by "0o", e.g. 0o660 + # unixsocketmode: "" + # The public facing URL where your users can reach Vikunja. Used in emails and for the communication between api and frontend. The url must be a valid http or https url. This setting is required when cors.enable is true. + # publicurl: "" + # The base path on the file system where Vikunja stores its data (database, files, logs, plugins). + # Defaults to the current working directory. When running as a systemd service, this respects the WorkingDirectory= setting. + # Vikunja will also look in this path for a config file, so you could provide only this variable to point to a folder + # with a config file which will then be used. + # rootpath: "/var/db/vikunja" + # The max number of items which can be returned per page + # maxitemsperpage: 50 + # Enable the caldav endpoint, see the docs for more details + # enablecaldav: true + # Set the motd message, available from the /info endpoint + # motd: "" + # Enable sharing of project via a link + # enablelinksharing: true + # Whether to let new users registering themselves or not + # enableregistration: true + # Whether to enable task attachments or not + # enabletaskattachments: true + # The time zone all timestamps are in. Please note that time zones have to use [the official tz database names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). UTC or GMT offsets won't work. + # timezone: "GMT" + # Whether task comments should be enabled or not + # enabletaskcomments: true + # Whether totp is enabled. In most cases you want to leave that enabled. + # enabletotp: true + # If not empty, this will enable `/test/{table}` endpoints which allow to put any content in the database. + # Used to reset the db before frontend tests. Because this is quite a dangerous feature allowing for lots of harm, + # each request made to this endpoint needs to provide an `Authorization: <token>` header with the token from below. <br/> + # **You should never use this unless you know exactly what you're doing** + # testingtoken: "" + # If enabled, Vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder + # is due. + # enableemailreminders: true + # If true, will allow users to request the complete deletion of their account. When using external authentication methods + # it may be required to coordinate with them in order to delete the account. This setting will not affect the cli commands + # for user deletion. + # enableuserdeletion: true + # The maximum size clients will be able to request for user avatars. + # If clients request a size bigger than this, it will be changed on the fly. + # maxavatarsize: 1024 + # If set to true, the frontend will show a big red warning not to use this instance for real data as it will be cleared out. + # You probably don't need to set this value, it was created specifically for usage on [try](https://try.vikunja.io). + # demomode: false + # Allow changing the logo and other icons based on various occasions throughout the year. + # allowiconchanges: true + # Allow using a custom logo via external URL. + # customlogourl: "" + # Allow using a custom logo for dark mode via external URL. If not set, the regular logo will be used for both light and dark modes. + # customlogourldark: "" + # Enables the public team feature. If enabled, it is possible to configure teams to be public, which makes them + # discoverable when sharing a project, therefore not only showing teams the user is member of. + # enablepublicteams: false + # The number of bcrypt rounds to use during registration. Each increment of this number doubles the computational cost. You probably don't need to change this value. + # bcryptrounds: 11 + # If enabled, users will only find other users who are part of an existing team when they are searching for a user by their partial name. The other existing team may be created from openid. It is still possible to add users to teams with their exact email address even when this is enabled. + # enableopenidteamusersearch: false + # Method for extracting client IP addresses. 'direct' (default) uses the TCP remote address and ignores forwarding headers — use this when Vikunja faces the internet directly. 'xff' extracts from the X-Forwarded-For header — use this behind proxies like nginx, Traefik, or cloud load balancers. 'realip' extracts from the X-Real-IP header. When using 'xff' or 'realip', configure 'service.trustedproxies' with your proxy CIDR ranges. + # ipextractionmethod: "direct" + # Comma-separated list of CIDR ranges for trusted reverse proxies. Only used when service.ipextractionmethod is 'xff' or 'realip'. X-Forwarded-For / X-Real-IP headers are only trusted from these addresses. Example: '127.0.0.1/32,::1/128,10.0.0.0/8,172.16.0.0/12' + # trustedproxies: "" +# +# sentry: + # If set to true, enables anonymous error tracking of api errors via Sentry. This allows us to gather more + # information about errors in order to debug and fix it. + # enabled: false + # Configure the Sentry dsn used for api error tracking. Only used when Sentry is enabled for the api. + # dsn: "https://440eedc957d545a795c17bbaf477497c@o1047380.ingest.sentry.io/4504254983634944" + # If set to true, enables anonymous error tracking of frontend errors via Sentry. This allows us to gather more + # information about errors in order to debug and fix it. + # frontendenabled: false + # Configure the Sentry dsn used for frontend error tracking. Only used when Sentry is enabled for the frontend. + # frontenddsn: "https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480" +# +# database: + # Database type to use. Supported values are mysql, postgres and sqlite. Vikunja is able to run with MySQL 8.0+, Mariadb 10.2+, PostgreSQL 12+, and sqlite. + # type: "sqlite" + # Database user which is used to connect to the database. + # user: "vikunja" + # Database password + # password: "" + # Database host + # host: "localhost" + # Database to use + # database: "vikunja" + # When using sqlite, this is the path where to store the database file. Can be an absolute path or relative path. <br/> + # Relative paths are resolved as follows: <br/> + # - If `service.rootpath` is explicitly configured (differs from the binary location), the database path is resolved relative to that directory. <br/> + # - Otherwise, relative paths are resolved to a platform-specific user data directory to prevent database files from being created in system directories (like `C:\Windows\System32` on Windows when running as a service): <br/> + # - **Windows**: `%LOCALAPPDATA%\Vikunja` (e.g., `C:\Users\username\AppData\Local\Vikunja`) <br/> + # - **macOS**: `~/Library/Application Support/Vikunja` <br/> + # - **Linux**: `$XDG_DATA_HOME/vikunja` or `~/.local/share/vikunja` <br/> + # **Recommendation**: Use an absolute path for production deployments, especially when running Vikunja as a Windows service, to have full control over the database location. + # path: "/var/db/vikunja/vikunja.db" + # Sets the max open connections to the database. Only used when using mysql and postgres. + # maxopenconnections: 100 + # Sets the maximum number of idle connections to the db. + # maxidleconnections: 50 + # The maximum lifetime of a single db connection in milliseconds. + # maxconnectionlifetime: 10000 + # Secure connection mode. Only used with postgres. + # (see https://pkg.go.dev/github.com/lib/pq?tab=doc#hdr-Connection_String_Parameters) + # sslmode: "disable" + # The path to the client cert. Only used with postgres. + # sslcert: "" + # The path to the client key. Only used with postgres. + # sslkey: "" + # The path to the ca cert. Only used with postgres. + # sslrootcert: "" + # Enable SSL/TLS for mysql connections. Options: false, true, skip-verify, preferred + # tls: false + # The PostgreSQL schema to use. Only used with postgres. If you have an existing Vikunja installation where the tables were created in a non-public schema (e.g. via the database user's search_path), you must set this to match that schema name. + # schema: "public" +# +# redis: + # Whether to enable redis or not + # enabled: false + # The host of the redis server including its port. + # host: "localhost:6379" + # The password used to authenticate against the redis server + # password: "" + # 0 means default database + # db: 0 +# +# cors: + # Whether to enable or disable cors headers. + # By default, this is enabled only for requests from the desktop application running on localhost. + # Note: If you want to put the frontend and the api on separate domains or ports, you will need to adjust this setting accordingly. + # enable: true + # A list of origins which may access the api. These need to include the protocol (`http://` or `https://`) and port, if any. + # origins: + # - "http://127.0.0.1:*" + # - "http://localhost:*" + # How long (in seconds) the results of a preflight request can be cached. + # maxage: 0 +# +# mailer: + # Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible. + # enabled: false + # SMTP Host + # host: "" + # SMTP Host port. + # **NOTE:** If you're unable to send mail and the only error you see in the logs is an `EOF`, try setting the port to `25`. + # port: 587 + # SMTP Auth Type. Can be either `plain`, `login` or `cram-md5`. + # authtype: "plain" + # SMTP username + # username: "user" + # SMTP password + # password: "" + # Whether to skip verification of the tls certificate on the server + # skiptlsverify: false + # The default from address when sending emails + # fromemail: "mail@vikunja" + # The length of the mail queue. + # queuelength: 100 + # The timeout in seconds after which the current open connection to the mailserver will be closed. + # queuetimeout: 30 + # By default, Vikunja will try to connect with starttls, use this option to force it to use ssl. + # forcessl: false +# +# log: + # A folder where all the logfiles should go. + # path: "/var/log/vikunja" + # Whether to show any logging at all or none + # enabled: true + # Where the normal log should go. Possible values are stdout, stderr, file or off to disable standard logging. + # standard: "file" + # Change the log level. Possible values (case-insensitive) are CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG. + # level: "INFO" + # Logging format. Can be either `text` or `structured` to output JSON. + # format: "text" + # Whether or not to log database queries. Useful for debugging. Possible values are stdout, stderr, file or off to disable database logging. + # database: "off" + # The log level for database log messages. Possible values (case-insensitive) are CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG. + # databaselevel: "WARNING" + # Whether to log http requests or not. Possible values are stdout, stderr, file or off to disable http logging. + # http: "stdout" + # Whether or not to log events. Useful for debugging. Possible values are stdout, stderr, file or off to disable events logging. + # events: "off" + # The log level for event log messages. Possible values (case-insensitive) are ERROR, INFO, DEBUG. + # eventslevel: "info" + # Whether or not to log mail log messages. This will not log mail contents. Possible values are stdout, stderr, file or off to disable mail-related logging. + # mail: "off" + # The log level for mail log messages. Possible values (case-insensitive) are ERROR, WARNING, INFO, DEBUG. + # maillevel: "info" +# +# ratelimit: + # whether or not to enable the rate limit + # enabled: false + # The kind on which rates are based. Can be either "user" for a rate limit per user or "ip" for an ip-based rate limit. + # kind: "user" + # The time period in seconds for the limit + # period: 60 + # The max number of requests a user is allowed to do in the configured time period + # limit: 100 + # The store where the limit counter for each user is stored. + # Possible values are "keyvalue", "memory" or "redis". + # When choosing "keyvalue" this setting follows the one configured in the "keyvalue" section. + # store: "keyvalue" + # The number of requests a user can make from the same IP to all unauthenticated routes (login, register, + # password confirmation, email verification, password reset request) per minute. This limit cannot be disabled. + # You should only change this if you know what you're doing. + # noauthlimit: 10 +# +# files: + # The path where files are stored + # basepath: "./files" + # The maximum size of a file, as a human-readable string. + # Warning: The max size is limited 2^64-1 bytes due to the underlying datatype + # maxsize: "20MB" + # The type of file storage backend. Supported values are `local` and `s3`. + # type: "local" + # Configuration for S3 storage backend + # s3: + # The S3 endpoint to use. Can be used with S3-compatible services like MinIO or Backblaze B2. + # endpoint: "" + # The name of the S3 bucket to store files in. + # bucket: "" + # The S3 region where the bucket is located. + # region: "" + # The S3 access key ID. + # accesskey: "" + # The S3 secret access key. + # secretkey: "" + # Whether to use path-style addressing (e.g., https://s3.amazonaws.com/bucket/key) instead of virtual-hosted-style (e.g., https://bucket.s3.amazonaws.com/key). This is commonly needed for self-hosted S3-compatible services. Some providers only support one style or the other. + # usepathstyle: false + # When enabled, the S3 client will send UNSIGNED-PAYLOAD instead of computing a SHA256 hash for request signing. Some S3-compatible providers (such as Ceph RadosGW, Clever Cloud Cellar) do not correctly verify payload signatures and return XAmzContentSHA256Mismatch errors. Enabling this option works around the issue. Only applies over HTTPS. + # disablesigning: false + # +# +# To use any of the available migrators, you usually need to configure credentials for the appropriate service and enable it. Find instructions below on how to do this for the provided migrators. +# migration: + # todoist: + # Whether to enable the Todoist migrator. + # enable: false + # The client id, required for making requests to the Todoist api + # You need to register your Vikunja instance at https://developer.todoist.com/appconsole.html to get this. + # clientid: "" + # The client secret, also required for making requests to the Todoist api. Obtain it at https://developer.todoist.com/appconsole.html after registering your Vikunja instance. + # clientsecret: "" + # The url where clients are redirected after they authorized Vikunja to access their Todoist items. + # In Todoist, this is called `OAuth redirect URL` and it needs to match the url you entered when registering + # your Vikunja instance at the Todoist developer console. + # When using the official Vikunja frontend, set this to `<service.publicurl>/migrate/todoist` (the default value). + # Otherwise, set this to an url which then makes a request to /api/v1/migration/todoist/migrate + # with the code obtained from the Todoist api. + # redirecturl: "<service.publicurl>/migrate/todoist" + # + # trello: + # Whether to enable the Trello migrator. + # enable: false + # The client id, required for making requests to the trello api. + # You need to register your Vikunja instance at https://trello.com/app-key (log in before you visit that link) to get one. Copy the `Personal Key` and set it as the client id. Add your Vikunja domain to the Allowed Origins list. + # key: "" + # The url where clients are redirected after they authorized Vikunja to access their trello cards. + # This needs to match the url you entered when registering your Vikunja instance at trello. + # When using the official Vikunja frontend, set this to `<service.publicurl>/migrate/trello` (the default value). + # Otherwise, set this to an url which then makes a request to /api/v1/migration/trello/migrate + # with the code obtained from the Trello api. + # redirecturl: "<frontend url>/migrate/trello" + # + # microsofttodo: + # Whether to enable the Microsoft Todo migrator. + # enable: false + # The client id, required for making requests to the Microsoft graph api. + # See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#register-an-application + # for information about how to register your Vikunja instance. + # clientid: "" + # The client secret, also required for making requests to the Microsoft graph api + # clientsecret: "" + # The url where clients are redirected after they authorized Vikunja to access their Microsoft todo tasks. + # This needs to match the url you entered when registering your Vikunja instance at Microsoft. + # When using the official Vikunja frontend, set this to `<service.publicurl>/migrate/microsoft-todo` (the default value). + # Otherwise, set this to an url which then makes a request to /api/v1/migration/microsoft-todo/migrate + # with the code obtained from the Microsoft Todo api. + # redirecturl: "<frontend url>/migrate/microsoft-todo" + # +# +# avatar: + # When using gravatar, this is the duration in seconds until a cached gravatar user avatar expires + # gravatarexpiration: 3600 + # If you use a Gravatar-compatible service other than gravatar.com, you may configure the base URL for the service here. + # For instance, gravatarbaseurl: 'https://libravatar.org'. The default is https://www.gravatar.com. + # gravatarbaseurl: "https://www.gravatar.com" +# +# backgrounds: + # Whether to enable backgrounds for projects at all. + # enabled: true + # providers: + # upload: + # Whether to enable uploaded project backgrounds + # enabled: true + # + # unsplash: + # Whether to enable setting backgrounds from unsplash as project backgrounds + # enabled: false + # You need to create an application for your installation at https://unsplash.com/oauth/applications/new + # and set the access token below. + # accesstoken: "" + # The unsplash application id is only used for pingback and required as per their api guidelines. + # You can find the Application ID in the dashboard for your API application. It should be a numeric ID. + # It will only show in the UI if your application has been approved for Enterprise usage, therefore if + # you’re in Demo mode, you can also find the ID in the URL at the end: https://unsplash.com/oauth/applications/:application_id + # applicationid: "" + # + # +# +# Legal urls +# Will be shown in the frontend if configured here +# legal: + # imprinturl: "" + # privacyurl: "" +# +# Key Value Storage settings +# The Key Value Storage is used for different kinds of things like metrics and a few cache systems. +# keyvalue: + # The type of the storage backend. Can be either "memory" or "redis". If "redis" is chosen it needs to be configured separately. + # type: "memory" +# +# auth: + # Local authentication will let users log in and register (if enabled) through the db. + # This is the default auth mechanism and does not require any additional configuration. + # local: + # Enable or disable local authentication + # enabled: true + # + # OpenID configuration will allow users to authenticate through a third-party OpenID Connect compatible provider.<br/> + # The provider needs to support the `openid`, `profile` and `email` scopes.<br/> + # **Note:** Some openid providers (like Gitlab) only make the email of the user available through OpenID if they have set it to be publicly visible. + # If the email is not public in those cases, authenticating will fail.<br/> + # **Note 2:** The frontend expects the third party to redirect the user <frontend-url>/auth/openid/<auth key> after authentication. Please make sure to configure the redirect url in your third party auth service accordingly if you're using the default Vikunja frontend. + # The frontend will automatically provide the API with the redirect url, composed from the current url where it's hosted. + # If you want to use the desktop client with OpenID, make sure to allow redirects to `127.0.0.1`. + # openid: + # Enable or disable OpenID Connect authentication + # enabled: false + # A list of enabled providers. You can freely choose the `<provider key>`. Note that you must add at least one key to a config file if you want to read values from an environment variable as the provider won't be known to Vikunja otherwise. + # providers: + # - + # <provider key>: + # The name of the provider as it will appear in the frontend. + # name: "" + # The auth url to send users to if they want to authenticate using OpenID Connect. + # authurl: "" + # The oidc logouturl that users will be redirected to on logout. + # Leave empty or delete key, if you do not want to be redirected. + # logouturl: "" + # The client ID used to authenticate Vikunja at the OpenID Connect provider. + # clientid: "" + # The client secret used to authenticate Vikunja at the OpenID Connect provider. + # clientsecret: "" + # The scope necessary to use oidc. + # If you want to use the Feature to create and assign to Vikunja teams via oidc, you have to add the custom "vikunja_scope" and check [openid.md](https://vikunja.io/docs/openid/). + # e.g. scope: openid email profile vikunja_scope + # scope: "openid email profile" + # This option allows to look for a local account where the OIDC Issuer match the Vikunja local username. Allowed value is either `true` or `false`. That option can be combined with `emailfallback`. + # Use with caution, this can allow the 3rd party provider to connect to *any* local account and therefore potential account hijaking. + # usernamefallback: false + # This option allows to look for a local account where the OIDC user's email match the Vikunja local email. Allowed value is either `true` or `false`. That option can be combined with `usernamefallback`. + # Use with caution, this can allow the 3rd party provider to connect to *any* local account and therefore potential account hijaking. + # emailfallback: false + # This option forces the use of the OpenID Connect UserInfo endpoint to retrieve user information instead of relying on claims from the ID token. When set to `true`, user data (email, name, username) will always be obtained from the UserInfo endpoint even if the information is available in the token claims. This is useful for providers that don't include complete user information in their tokens or when you need the most up-to-date user data. Allowed value is either `true` or `false`. + # forceuserinfo: false + # This option requires the OpenID Connect provider to be available during Vikunja startup. When set to `true`, Vikunja will crash if it cannot connect to the provider during initialization, allowing container orchestrators like Kubernetes to handle the failure by restarting the application. This is useful in environments where you want to ensure all authentication providers are available before the application starts serving requests. Allowed value is either `true` or `false`. + # requireavailability: false + # + # + # Authentication via an external LDAP server. + # ldap: + # Enable or disable LDAP authentication. + # enabled: false + # The hostname of the LDAP server. + # host: "localhost" + # The port of the LDAP server. + # port: 389 + # The Base DN used for LDAP search requests. + # basedn: "" + # The string that will be used to filter users in the directory. `%[1]s` will be substituted with the username entered in the login form. + # userfilter: "" + # Whether to try and connect via a TLS-encrypted channel to the LDAP server. + # usetls: true + # Whether to verify the TLS certificate offered by the LDAP server. + # verifytls: true + # The DN of the account used to search the LDAP directory for users when they want to log in. + # binddn: "" + # The password of the account used to search the LDAP directory. + # bindpassword: "" + # If enabled, Vikunja will automagically add users to teams in Vikunja matching `groupsyncfilter`. The teams will be automatically created and kept in sync by Vikunja. + # groupsyncenabled: false + # The filter to search for group objects in the ldap directory. Only used when `groupsyncenabled` is set to `true`. + # groupsyncfilter: "(&(objectclass=*)(|(objectclass=group)(objectclass=groupOfNames)))" + # The LDAP attribute where an image, decoded as raw bytes, can be found. If provided, Vikunja will use the value as avatar. + # avatarsyncattribute: "" + # The directory attributes that are used to create accounts in Vikunja. + # attribute: "" + # The LDAP attribute used to set the username in Vikunja. + # username: "uid" + # The LDAP attribute used to set the email in Vikunja. + # email: "mail" + # The LDAP attribute used to set the displayed name in Vikunja. + # displayname: "displayName" + # The LDAP attribute used to check group membership of a team in Vikunja. Only used when groups are synced to Vikunja. + # memberid: "member" + # + # +# +# Prometheus metrics endpoint +# metrics: + # If set to true, enables a /metrics endpoint for prometheus to collect metrics about Vikunja. You can query it from `/api/v1/metrics`. + # enabled: false + # If set to a non-empty value the /metrics endpoint will require this as a username via basic auth in combination with the password below. + # username: "" + # If set to a non-empty value the /metrics endpoint will require this as a password via basic auth in combination with the username below. + # password: "" +# +# Provide default settings for new users. When a new user is created, these settings will automatically be set for the user. If you change them in the config file afterwards they will not be changed back for existing users. +# defaultsettings: + # The avatar source for the user. Can be `gravatar`, `initials`, `upload` or `marble`. If you set this to `upload` you'll also need to specify `defaultsettings.avatar_file_id`. + # avatar_provider: "initials" + # The id of the file used as avatar. + # avatar_file_id: 0 + # If set to true users will get task reminders via email. + # email_reminders_enabled: false + # If set to true will allow other users to find this user when searching for parts of their name. + # discoverable_by_name: false + # If set to true will allow other users to find this user when searching for their exact email. + # discoverable_by_email: false + # If set to true will send an email every day with all overdue tasks at a configured time. + # overdue_tasks_reminders_enabled: true + # When to send the overdue task reminder email. + # overdue_tasks_reminders_time: "9:00" + # The id of the default project. Make sure users actually have access to this project when setting this value. + # default_project_id: 0 + # Start of the week for the user. `0` is sunday, `1` is monday and so on. + # week_start: 0 + # The language of the user interface. Must be an ISO 639-1 language code followed by an ISO 3166-1 alpha-2 country code. Check https://code.vikunja.io/vikunja/tree/main/frontend/src/i18n/lang for a list of possible languages. Will default to the browser language the user uses when signing up. + # language: "<unset>" + # The time zone of each individual user. This will affect when users get reminders and overdue task emails. + # timezone: "<time zone set at service.timezone>" +# +# webhooks: + # Whether to enable support for webhooks + # enabled: true + # The timeout in seconds until a webhook request fails when no response has been received. + # timeoutseconds: 30 + # Deprecated: use outgoingrequests.proxyurl instead. The URL of [a mole instance](https://github.com/frain-dev/mole) to use to proxy outgoing webhook requests. You should use this and configure appropriately if you're not the only one using your Vikunja instance. More info about why: https://webhooks.fyi/best-practices/webhook-providers#implement-security-on-egress-communication. Must be used in combination with `webhooks.password` (see below). + # proxyurl: "" + # Deprecated: use outgoingrequests.proxypassword instead. The proxy password to use when authenticating against the proxy. + # proxypassword: "" + # Deprecated: use outgoingrequests.allownonroutableips instead. If set to true, webhook target URLs may resolve to non-globally-routable IP addresses (private networks, loopback, link-local, etc). When false (the default), Vikunja blocks outgoing webhook requests to these addresses to prevent SSRF attacks. Set this to true if you need webhooks to reach services on your internal network. + # allownonroutableips: false +# +# outgoingrequests: + # If set to true, outgoing HTTP requests (webhooks, avatar downloads, migration imports) may resolve to non-globally-routable IP addresses. When false (the default), Vikunja blocks these to prevent SSRF attacks. Set to true only if you need these to reach services on your internal network. + # allownonroutableips: false + # The URL of [a mole instance](https://github.com/frain-dev/mole) to use to proxy outgoing HTTP requests. Applies to webhooks, avatar downloads, and migration imports. You should use this and configure appropriately if you're not the only one using your Vikunja instance. More info about why: https://webhooks.fyi/best-practices/webhook-providers#implement-security-on-egress-communication. Must be used in combination with `outgoingrequests.proxypassword`. + # proxyurl: "" + # The proxy password for authenticating against the proxy. + # proxypassword: "" +# +# autotls: + # If set to true, Vikunja will automatically request a TLS certificate from Let's Encrypt and use it to serve Vikunja over TLS. By enabling this option, you agree to Let's Encrypt's TOS. + # You must configure a `service.publicurl` with a valid TLD where Vikunja is reachable to make this work. Furthermore, it is reccomened to set `service.interface` to `:443` if you're using this. + # enabled: false + # A valid email address which will be used to register certificates with Let's Encrypt. You must provide this value in order to use autotls. + # email: "" + # A duration when certificates should be renewed before they expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. + # renewbefore: "30d" +# +# plugins: + # Whether to enable the plugin system. + # enabled: false + # The directory where plugins are stored. + # dir: "<rootpath>plugins" + # The plugin loader to use. "yaegi" loads plugins from Go source files (directories of .go files). "native" (deprecated) loads compiled Go plugin shared libraries (.so files). + # loader: "native" +# +# diff --git a/www/vikunja/files/patch-pkg_doctor_files__unix.go b/www/vikunja/files/patch-pkg_doctor_files__unix.go new file mode 100644 index 000000000000..c6650c83db1e --- /dev/null +++ b/www/vikunja/files/patch-pkg_doctor_files__unix.go @@ -0,0 +1,11 @@ +--- pkg/doctor/files_unix.go.orig 2026-03-23 20:49:15 UTC ++++ pkg/doctor/files_unix.go +@@ -40,7 +40,7 @@ func checkDiskSpace(path string) CheckResult { + } + + // Available space in bytes +- availableBytes := stat.Bavail * uint64(stat.Bsize) ++ availableBytes := uint64(stat.Bavail) * uint64(stat.Bsize) + availableGB := float64(availableBytes) / (1024 * 1024 * 1024) + + return CheckResult{ diff --git a/www/vikunja/files/vikunja.in b/www/vikunja/files/vikunja.in new file mode 100644 index 000000000000..de91f2c8c81f --- /dev/null +++ b/www/vikunja/files/vikunja.in @@ -0,0 +1,22 @@ +#!/bin/sh +# +# PROVIDE: vikunja +# REQUIRE: LOGIN networking +# KEYWORD: shutdown + +. /etc/rc.subr + +name=vikunja +rcvar=vikunja_enable + +load_rc_config $name + +vikunja_user="www" +vikunja_env="VIKUNJA_SERVICE_ROOTPATH=/var/db/vikunja" + +vikunja_command="%%PREFIX%%/bin/${name}" +pidfile="/var/run/${name}/${name}.pid" +command="/usr/sbin/daemon" +command_args="-P ${pidfile} -r -f ${vikunja_command}" + +run_rc_command "$1" diff --git a/www/vikunja/pkg-descr b/www/vikunja/pkg-descr new file mode 100644 index 000000000000..e3db106d09db --- /dev/null +++ b/www/vikunja/pkg-descr @@ -0,0 +1,3 @@ +Vikunja is an open-source, self-hostable to-do app. It helps you organize your +tasks and projects with features like list, kanban, gantt, and table views - +all while keeping your data under your control. diff --git a/www/vikunja/pkg-plist b/www/vikunja/pkg-plist new file mode 100644 index 000000000000..4aa41ba91c4e --- /dev/null +++ b/www/vikunja/pkg-plist @@ -0,0 +1,5 @@ +bin/vikunja +/var/db/vikunja/config.yml.sample +@dir(www,www) /var/db/vikunja +@dir(www,www) /var/run/vikunja +@dir(www,www) /var/log/vikunja |
