-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92afa51
commit 43e5d0b
Showing
123 changed files
with
2,340 additions
and
1,400 deletions.
There are no files selected for viewing
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,4 +1,5 @@ | ||
.idea | ||
.vscode | ||
# Framework specific | ||
vendor/ | ||
composer.lock | ||
|
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 @@ | ||
4.0.0 |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<?php | ||
|
||
//-------------------------------------------------------------------------- | ||
// Boot Stage Customization | ||
//-------------------------------------------------------------------------- |
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,11 +1,20 @@ | ||
<?php | ||
|
||
/** | ||
* Setup the Storage Path. | ||
* Config - the Global Configuration loaded BEFORE the Nova Application starts. | ||
*/ | ||
|
||
|
||
/** | ||
* Define the path to Storage. | ||
* | ||
* NOTE: in a multi-tenant design, every application should have its unique Storage. | ||
*/ | ||
define('STORAGE_PATH', BASEPATH .'storage' .DS); | ||
|
||
/** | ||
* Define the global prefix. | ||
* | ||
* PREFER to be used in Database calls or storing Session data, default is 'nova_' | ||
*/ | ||
define('PREFIX', 'nova_'); |
Oops, something went wrong.