-
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.
- Loading branch information
0 parents
commit c3dc09d
Showing
26 changed files
with
948 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# The environment Craft is currently running in ('dev', 'staging', 'production', etc.) | ||
ENVIRONMENT="dev" | ||
|
||
# The secure key Craft will use for hashing and encrypting data | ||
SECURITY_KEY="" | ||
|
||
# The database driver that will used ('mysql' or 'pgsql') | ||
DB_DRIVER="mysql" | ||
|
||
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1') | ||
DB_SERVER="localhost" | ||
|
||
# The database username to connect with | ||
DB_USER="root" | ||
|
||
# The database password to connect with | ||
DB_PASSWORD="" | ||
|
||
# The name of the database to select | ||
DB_DATABASE="" | ||
|
||
# The database schema that will be used (PostgreSQL only) | ||
DB_SCHEMA="public" | ||
|
||
# The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database) | ||
DB_TABLE_PREFIX="" | ||
|
||
# The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL. | ||
DB_PORT="" |
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 @@ | ||
/.env | ||
/.idea | ||
/vendor | ||
.DS_Store |
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,3 @@ | ||
# vigetlabs/craft Change Log | ||
|
||
## TODO |
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,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) Viget Labs, LLC. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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 @@ | ||
WIP |
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,52 @@ | ||
{ | ||
"name": "jeremyfrank/craft", | ||
"description": "Viget Craft 3 CMS scaffolding project", | ||
"keywords": [ | ||
"craft", | ||
"cms", | ||
"craftcms", | ||
"project" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://craftcms.com/", | ||
"type": "project", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/vigetlabs/craft/issues", | ||
"source": "https://github.com/vigetlabs/craft", | ||
"docs": "https://github.com/vigetlabs/craft" | ||
}, | ||
"minimum-stability": "RC", | ||
"require": { | ||
"craftcms/cms": "^3.0.0-RC1", | ||
"vlucas/phpdotenv": "^2.4.0", | ||
"craftcms/redactor": "^1.0.0", | ||
"mikestecker/craft-videoembedder": "^v1.0.0", | ||
"pennebaker/craft-architect": "^2.2.0", | ||
"rias/craft-position-fieldtype": "^v1.0", | ||
"topshelfcraft/environment-label": "^3.1.1", | ||
"verbb/super-table": "^2.0.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"modules\\": "modules/" | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.0" | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@composer dump-autoload -o", | ||
"@php craft setup/welcome", | ||
"@php viget-setup welcome" | ||
] | ||
} | ||
} |
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,25 @@ | ||
<?php | ||
/** | ||
* Yii Application Config | ||
* | ||
* Edit this file at your own risk! | ||
* | ||
* The array returned by this file will get merged with | ||
* vendor/craftcms/cms/src/config/app.php and app.[web|console].php, when | ||
* Craft's bootstrap script is defining the configuration for the entire | ||
* application. | ||
* | ||
* You can define custom modules and system components, and even override the | ||
* built-in system components. | ||
* | ||
* If you want to modify the application config for *only* web requests or | ||
* *only* console requests, create an app.web.php or app.console.php file in | ||
* your config/ folder, alongside this one. | ||
*/ | ||
|
||
return [ | ||
'modules' => [ | ||
'my-module' => \modules\Module::class, | ||
], | ||
//'bootstrap' => ['my-module'], | ||
]; |
Oops, something went wrong.