app-store/apps/mongo-express/config.json
Stavros 1cc62c2202
Add supported architectures to all apps. (#1493)
* Add the extra config to the first 50 apps and modify tests,

* Add arch to extra 55 apps.

* Fix tests error.

* Fix tests (again).

* Andd the last 77 apps.

* Change photoprism from latest to a version.

* Fixes.

* Drop arm support for peppermint.

---------

Co-authored-by: JigSaw <JigSawFr@users.noreply.github.com>
2023-10-29 21:43:17 +02:00

59 lines
1.5 KiB
JSON

{
"$schema": "../schema.json",
"name": "Mongo Express",
"id": "mongo-express",
"available": true,
"short_desc": "Web-based MongoDB admin interface, written with Node.js and Express",
"author": "MongoDB",
"port": 8087,
"categories": ["development", "data"],
"description": "A web-based MongoDB admin interface written with Node.js, Express, and Bootstrap3",
"tipi_version": 1,
"version": "1.0.0",
"source": "https://github.com/mongo-express/mongo-express",
"website": "https://www.mongodb.com/",
"form_fields": [
{
"type": "ip",
"label": "MongoDB Server IP Address",
"max": 50,
"min": 3,
"required": true,
"env_variable": "ME_CONFIG_MONGODB_SERVERIP"
},
{
"type": "text",
"label": "MongoDB Admin Username",
"max": 50,
"min": 3,
"required": true,
"env_variable": "ME_CONFIG_MONGODB_ADMINUSERNAME"
},
{
"type": "password",
"label": "MongoDB Admin Password",
"max": 50,
"min": 10,
"required": true,
"env_variable": "ME_CONFIG_MONGODB_ADMINPASSWORD"
},
{
"type": "text",
"label": "Mongo Express Web Username",
"max": 50,
"min": 3,
"required": true,
"env_variable": "ME_CONFIG_BASICAUTH_USERNAME"
},
{
"type": "password",
"label": "Mongo Express Web Password",
"max": 50,
"min": 10,
"required": true,
"env_variable": "ME_CONFIG_BASICAUTH_PASSWORD"
}
],
"supported_architectures": ["arm64", "amd64"]
}