-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (28 loc) · 830 Bytes
/
index.php
File metadata and controls
33 lines (28 loc) · 830 Bytes
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
<?php
/**
* This file contains the beginning of life.
*/
/**
* __
* /_/\
* / /\ \ CHARM FRAMEWORK
* / / /\ \ ENTRY POINT
* / / /\ \ \
* / /_/__\ \ \ The foundation of your
* /_/______\_\/\ intergalactic journey.
* \_\_________\/
*
* Welcome to Charm!
*
* Docs: https://neoground.com/docs/charm
*/
/**--**--**--**--**--**--**--**--**--**--**--**--**
* Stay hungry, stay foolish *
* https://www.youtube.com/watch?v=UF8uR6Z6KLc *
**--**--**--**--**--**--**--**--**--**--**--**--**/
// First we require our composer autoloader
require_once __DIR__ . '/vendor/autoload.php';
// Then we include our basic configuration
require_once __DIR__ . '/app/Engine.php';
// Finally we start the system
Charm\Vivid\Kernel\Handler::getInstance()->start();