-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (33 loc) · 1.05 KB
/
index.php
File metadata and controls
38 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* ---------------------------------------------------------------
* NAILS MAIN APPLICATION
* ---------------------------------------------------------------
*
* This is the kick off point for the main Nails Application.
* Documentation: https://nailsapp.co.uk
*/
/*
*---------------------------------------------------------------
* Autoloader
*---------------------------------------------------------------
*/
require_once __DIR__ . '/vendor/autoload.php';
/*
*---------------------------------------------------------------
* Nails Bootstrapper
*---------------------------------------------------------------
*/
Nails\Bootstrap::run(__FILE__);
/*
*---------------------------------------------------------------
* CodeIgniter
*---------------------------------------------------------------
*/
require_once BASEPATH . 'core/CodeIgniter.php';
/*
*---------------------------------------------------------------
* Nails Shutdown Handler
*---------------------------------------------------------------
*/
Nails\Bootstrap::shutdown();