├── snipeitapp_config.php ├── snipeitapp_config_with_security_code.php ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── stale.yml └── README.md /snipeitapp_config.php: -------------------------------------------------------------------------------- 1 | Manage API keys --> Create new 8 | 9 | **1.** Download **snipeitapp_config.php** file and copy it to your Snipe-IT public directory, so it would be acceded as **http(s)://snipeit.yourdomain.com/snipeitapp_config.php** 10 | 11 | **2.** Edit **snipeitapp_config.php** file and set your api key: 12 | 13 | ``` 14 | Snipe-IT server address 24 | 25 | * Fill yor server address and press CONFIGURE APP button 26 | 27 | If all works fine, you will see a green notification "**App configured!!**" 28 | 29 | 30 | ## HIGHLY RECOMMENDED: DELETE THE FILE snipeitapp_config.php AFTER APP CONFIGURATION 31 | 32 | 33 | #### You can help me to continue developing applications, sometimes I need extra coffee: https://paypal.me/diegogarciadev 34 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-stale - https://github.com/probot/stale 2 | 3 | # Number of days of inactivity before an Issue or Pull Request becomes stale 4 | daysUntilStale: 30 5 | 6 | # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 | # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8 | daysUntilClose: 7 9 | 10 | # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) 11 | onlyLabels: 12 | - more-information-needed 13 | 14 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 15 | exemptLabels: 16 | - pinned 17 | - security 18 | - bug 19 | - "[Status] Maybe Later" 20 | 21 | # Set to true to ignore issues in a project (defaults to false) 22 | exemptProjects: false 23 | 24 | # Set to true to ignore issues in a milestone (defaults to false) 25 | exemptMilestones: false 26 | 27 | # Set to true to ignore issues with an assignee (defaults to false) 28 | exemptAssignees: false 29 | 30 | # Label to use when marking as stale 31 | staleLabel: wontfix 32 | 33 | # Comment to post when marking as stale. Set to `false` to disable 34 | markComment: > 35 | This issue has been automatically marked as stale because it has not had 36 | recent activity. It will be closed if no further activity occurs. Thank you 37 | for your contributions. 38 | 39 | # Comment to post when removing the stale label. 40 | # unmarkComment: > 41 | # Your comment here. 42 | 43 | # Comment to post when closing a stale Issue or Pull Request. 44 | # closeComment: > 45 | # Your comment here. 46 | 47 | # Limit the number of actions per hour, from 1-30. Default is 30 48 | limitPerRun: 30 49 | 50 | # Limit to only `issues` or `pulls` 51 | # only: issues 52 | 53 | # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 54 | # pulls: 55 | # daysUntilStale: 30 56 | # markComment: > 57 | # This pull request has been automatically marked as stale because it has not had 58 | # recent activity. It will be closed if no further activity occurs. Thank you 59 | # for your contributions. 60 | 61 | # issues: 62 | # exemptLabels: 63 | # - confirmed 64 | --------------------------------------------------------------------------------