50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 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": "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"
 | 
						|
    }
 | 
						|
  ]
 | 
						|
}
 |