snipe-it/app.json

155 lines
5.7 KiB
JSON
Raw Permalink Normal View History

2021-09-05 07:33:13 -07:00
{
"name": "Snipe-IT",
"description": "Open source asset management.",
"keywords": [
"asset management",
"it asset"
],
"website": "https://snipeitapp.com/",
"repository": "https://github.com/snipe/snipe-it",
2021-09-08 17:51:43 -07:00
"logo": "https://pbs.twimg.com/profile_images/976748875733020672/K-HnZCCK_400x400.jpg",
2021-09-05 07:33:13 -07:00
"success_url": "/setup",
"env": {
"APP_ENV": {
"description": "Laravel environment mode. Unless developing the application, this should be production.",
2021-09-05 07:33:13 -07:00
"value": "production"
},
2021-09-08 17:51:43 -07:00
"APP_DEBUG": {
"description": "Laravel debug mode. Unless developing the application or actively debugging a problem, this should be set to false.",
2021-09-08 17:51:43 -07:00
"value": "false"
},
2021-09-05 07:33:13 -07:00
"APP_KEY": {
"description": "A secret key for verifying the integrity of signed cookies. (See either https://snipe-it.readme.io/docs/generate-your-app-key or generate at https://coderstoolbox.online/toolbox/generate-symfony-secret)",
2021-09-05 07:33:13 -07:00
"value": ""
},
"APP_URL": {
"description": "URL where your Snipe-IT install will be available at.",
"value": "https://your-app-name.herokuapp.com"
},
"APP_TIMEZONE": {
"description": "Which timezone do you want to use for your install? (http://php.net/manual/en/timezones.php)",
"value": "UTC"
},
"APP_LOCALE": {
"description": "Which language do you want to use for your install? (https://snipe-it.readme.io/docs/configuration#setting-a-language)",
"value": "en"
},
2021-09-08 17:51:43 -07:00
"MAX_RESULTS": {
"description": "The maximum number of search results that can be returned at one time.",
"value": "500"
},
"MAIL_MAILER": {
2021-09-08 17:51:43 -07:00
"description": "Mail driver - Generally SMTP on Heroku - https://snipe-it.readme.io/docs/configuration#required-outgoing-mail-settings",
2021-09-05 07:33:13 -07:00
"value": "smtp"
},
"MAIL_HOST": {
2021-09-08 17:51:43 -07:00
"description": "SMTP Server Hostname",
2021-09-05 07:33:13 -07:00
"value": "smtp.your.domain.name"
},
"MAIL_PORT": {
2021-09-08 17:51:43 -07:00
"description": "SMTP Server Port",
2021-09-05 07:33:13 -07:00
"value": "25"
},
"MAIL_USERNAME": {
2021-09-08 17:51:43 -07:00
"description": "SMTP Server Username",
2021-09-05 07:33:13 -07:00
"value": "YOURUSERNAME"
},
"MAIL_PASSWORD": {
2021-09-08 17:51:43 -07:00
"description": "SMTP Server Password",
2021-09-05 07:33:13 -07:00
"value": "YOURPASSWORD"
},
"MAIL_TLS_VERIFY_PEER": {
"description": "Ensure validity of TLS certificate on remote mail server",
"value": true
2021-09-05 07:33:13 -07:00
},
"MAIL_FROM_ADDR": {
2021-09-08 17:51:43 -07:00
"description": "Email from address",
"value": "no-reply@domain.name"
2021-09-05 07:33:13 -07:00
},
"MAIL_FROM_NAME": {
2021-09-08 17:51:43 -07:00
"description": "Email from Name",
2021-09-05 07:33:13 -07:00
"value": "Snipe-IT"
},
"MAIL_REPLYTO_ADDR": {
2021-09-08 17:51:43 -07:00
"description": "Email Reply-To address",
2021-09-05 07:33:13 -07:00
"value": "your@domain.name"
},
"MAIL_REPLYTO_NAME": {
2021-09-08 17:51:43 -07:00
"description": "Email Reply-To Name",
2021-09-05 07:33:13 -07:00
"value": "Snipe-IT"
},
"MAIL_AUTO_EMBED": {
2021-09-08 17:51:43 -07:00
"description": "Whether or not to embed images in emails (via CID or base64) versus linking to them.",
2021-09-05 07:33:13 -07:00
"value": "true"
},
"MAIL_AUTO_EMBED_METHOD": {
2021-09-08 17:51:43 -07:00
"description": "Method that should be used for attaching inline images.",
2021-09-05 07:33:13 -07:00
"value": "base64"
},
"SESSION_LIFETIME": {
2021-09-08 17:51:43 -07:00
"description": "Specify the time in minutes that the session should remain valid.",
2021-09-05 07:33:13 -07:00
"value": "12000"
},
"EXPIRE_ON_CLOSE": {
2021-09-08 17:51:43 -07:00
"description": "Specify whether or not the logged in session should be expired when the user closes their browser window.",
2021-09-05 07:33:13 -07:00
"value": "false"
},
"ENCRYPT": {
2021-09-08 17:51:43 -07:00
"description": "Specify whether you wish to use encrypted cookies for your Snipe-IT sessions.",
"value": "true"
2021-09-05 07:33:13 -07:00
},
"COOKIE_NAME": {
2021-09-08 17:51:43 -07:00
"description": "The name of the cookie set by Snipe-IT for session management.",
2021-09-05 07:33:13 -07:00
"value": "snipeit_session"
},
"COOKIE_DOMAIN": {
2021-09-08 17:51:43 -07:00
"description": "The domain name that the session cookie should be sent for.",
2021-09-05 07:33:13 -07:00
"value": "your-app-name.herokuapp.com"
},
"SECURE_COOKIES": {
2021-09-08 17:51:43 -07:00
"description": "Should cookies only be sent for HTTPS connections? Generally true on Heroku.",
"value": "true"
2021-09-05 07:33:13 -07:00
},
"LOGIN_MAX_ATTEMPTS": {
2021-09-08 17:51:43 -07:00
"description": "The maximum number of failed attempts allowed before the user is throttled.",
2021-09-05 07:33:13 -07:00
"value": "5"
},
"LOGIN_LOCKOUT_DURATION": {
2021-09-08 17:51:43 -07:00
"description": "The duration (in seconds) that the user should be blocked from attempting to authenticate again.",
2021-09-05 07:33:13 -07:00
"value": "60"
},
2022-07-25 19:57:14 -07:00
"LOG_CHANNEL": {
2021-09-05 07:33:13 -07:00
"description": "Driver to send logs to. (errorlog for stderr)",
"value": "errorlog"
},
"ALLOW_IFRAMING": {
2021-09-08 17:51:43 -07:00
"description": "Allow Snipe-IT to be loaded using an iFrame?",
2021-09-05 07:33:13 -07:00
"value": "false"
},
"GOOGLE_MAPS_API": {
2021-09-08 17:51:43 -07:00
"description": "Include your Google Maps API key here if you'd like Snipe-IT to load maps from Google on your locations and suppliers pages.",
"required": false
2021-09-05 07:33:13 -07:00
},
"BACKUP_ENV": {
2021-09-08 17:51:43 -07:00
"description": "Set this to true if you wish to backup your .env file in your Admin > Backups process.",
2021-09-05 07:33:13 -07:00
"value": "true"
},
"ENABLE_HSTS": {
2021-09-08 17:51:43 -07:00
"description": "Whether or not to send the HSTS security policy header.",
2021-09-05 07:33:13 -07:00
"value": "false"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/php",
"addons": [
"cleardb:ignite",
"heroku-redis:mini",
2021-09-08 18:11:46 -07:00
"papertrail:choklad"
2021-09-05 07:33:13 -07:00
]
}