forked from snipe/snipe-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # .gitignore # Dockerfile # README.md # app/Http/Controllers/AccessoriesController.php # app/Http/Controllers/AssetMaintenancesController.php # app/Http/Controllers/AssetsController.php # app/Http/Controllers/ConsumablesController.php # app/Http/Controllers/GroupsController.php # app/Http/Controllers/LicensesController.php # app/Http/Controllers/ReportsController.php # app/Http/Controllers/UsersController.php # app/Http/routes.php # app/Models/Depreciation.php # app/Models/Location.php # config/version.php # resources/views/account/view-assets.blade.php # resources/views/hardware/edit.blade.php # resources/views/hardware/view.blade.php # resources/views/partials/modals.blade.php # resources/views/reports/custom.blade.php # snipeit.sh
- Loading branch information
Showing
5,150 changed files
with
596,283 additions
and
234,201 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
APP_ENV=local | ||
APP_ENV=testing | ||
APP_DEBUG=true | ||
APP_URL=http://snipe-it.localapp | ||
DB_CONNECTION=mysql | ||
DB_CONNECTION=sqlite_testing | ||
DB_DEFAULT=sqlite_testing | ||
DB_HOST=localhost | ||
DB_DATABASE=snipeittests | ||
DB_USERNAME=snipeit | ||
DB_PASSWORD=snipe | ||
APP_KEY=base64:tu9NRh/a6+dCXBDGvg0Gv/0TcABnFsbT4AKxrr8mwQo= | ||
|
||
|
||
# -------------------------------------------- | ||
# OPTIONAL: LOGIN THROTTLING | ||
# (LOGIN_LOCKOUT_DURATIONin minutes) | ||
# -------------------------------------------- | ||
LOGIN_MAX_ATTEMPTS=1000000 | ||
LOGIN_LOCKOUT_DURATION=100000000 | ||
|
||
MAIL_DRIVER=log | ||
MAIL_FROM_ADDR=you@example.com | ||
MAIL_FROM_NAME=Snipe-IT |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Code ownership for pull request reviews, per | ||
# the feature detailed here: | ||
|
||
# https://github.com/blog/2392-introducing-code-owners | ||
# https://help.github.com/articles/about-codeowners/ | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @snipe | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# So if a pull request only touches javascript files, only these owners | ||
# will be requested to review. | ||
|
||
# For example: | ||
# *.js @octocat @github/js | ||
|
||
|
||
app/Importer/* @dmeltzer | ||
app/Http/Controllers/CustomFields* @uberbrady | ||
app/Http/Controllers/Api/CustomFields* @uberbrady | ||
resources/views/custom_fields/* @uberbrady | ||
docker/* @uberbrady |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,5 @@ tests/_support/_generated/* | |
/npm-debug.log | ||
/storage/oauth-private.key | ||
/storage/oauth-public.key | ||
|
||
*.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Contributing | ||
|
||
Please see the documentation on [contributing and developing for Snipe-IT](https://snipe-it.readme.io/docs/contributing). | ||
|
||
|
||
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.