Gitlab@Informatics
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OSSD11_C0
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
64160174
OSSD11_C0
Commits
77cf4916
Commit
77cf4916
authored
2 years ago
by
64160295
Browse files
Options
Downloads
Patches
Plain Diff
edit gitigmore
parent
7dffab9d
Branches
Branches containing commit
No related tags found
1 merge request
!12
proof tranfer update
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
bootstrap/app.php
+55
-0
55 additions, 0 deletions
bootstrap/app.php
with
56 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
77cf4916
...
...
@@ -21,4 +21,5 @@ temp_database
/storage/logs
./vendor/*
./bootstrap/cache/*
bootstrap/cache/*
composer.lock
This diff is collapsed.
Click to expand it.
bootstrap/app.php
0 → 100644
+
55
−
0
View file @
77cf4916
<?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/
$app
=
new
Illuminate\Foundation\Application
(
$_ENV
[
'APP_BASE_PATH'
]
??
dirname
(
__DIR__
)
);
/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/
$app
->
singleton
(
Illuminate\Contracts\Http\Kernel
::
class
,
App\Http\Kernel
::
class
);
$app
->
singleton
(
Illuminate\Contracts\Console\Kernel
::
class
,
App\Console\Kernel
::
class
);
$app
->
singleton
(
Illuminate\Contracts\Debug\ExceptionHandler
::
class
,
App\Exceptions\Handler
::
class
);
/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/
return
$app
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment