-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Welch <[email protected]>
- Loading branch information
Showing
101 changed files
with
12,895 additions
and
1,974 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,4 @@ | ||
{ | ||
"presets": ["es2015"], | ||
"compact": true | ||
} |
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,37 @@ | ||
{ | ||
"important": false, | ||
"adjoining-classes": false, | ||
"known-properties": false, | ||
"box-sizing": false, | ||
"box-model": false, | ||
"overqualified-elements": false, | ||
"display-property-grouping": false, | ||
"bulletproof-font-face": false, | ||
"compatible-vendor-prefixes": false, | ||
"regex-selectors": false, | ||
"errors": true, | ||
"duplicate-background-images": false, | ||
"duplicate-properties": false, | ||
"empty-rules": false, | ||
"selector-max-approaching": false, | ||
"gradients": false, | ||
"fallback-colors": false, | ||
"font-sizes": false, | ||
"font-faces": false, | ||
"floats": false, | ||
"star-property-hack": false, | ||
"outline-none": false, | ||
"import": false, | ||
"ids": false, | ||
"underscore-property-hack": false, | ||
"rules-count": false, | ||
"qualified-headings": false, | ||
"selector-max": false, | ||
"shorthand": false, | ||
"text-indent": false, | ||
"unique-headings": false, | ||
"universal-selector": false, | ||
"unqualified-attributes": false, | ||
"vendor-prefix": false, | ||
"zero-units": false | ||
} |
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
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,16 @@ | ||
# nystudio107/craft Change Log | ||
|
||
## 1.0.1 - 2017.12.01 | ||
### Added | ||
* Added accessible tabhandler.js | ||
* Added Tailwind CSS | ||
* Added support for Redis via `app.php` | ||
* Fixed `package.json` paths for `web/` | ||
* Cleaned up the default templates | ||
* Added `src/conf/` for Nginx or other configuration files | ||
|
||
## 1.0.0 - 2017.11.26 | ||
### Added | ||
* Initial release | ||
|
||
Brought to you by [nystudio107](https://nystudio107.com/) |
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
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 @@ | ||
# Supported browsers | ||
|
||
last 3 versions | ||
iOS >= 8 |
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,6 +1,7 @@ | ||
{ | ||
"name": "craftcms/craft", | ||
"description": "Craft CMS", | ||
"name": "nystudio107/craft", | ||
"description": "nystudio107 Craft 3 CMS scaffolding project", | ||
"version": "1.0.1", | ||
"keywords": [ | ||
"craft", | ||
"cms", | ||
|
@@ -11,33 +12,35 @@ | |
"homepage": "https://craftcms.com/", | ||
"type": "project", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/craftcms/cms/issues", | ||
"forum": "https://craftcms.stackexchange.com/", | ||
"source": "https://github.com/craftcms/cms", | ||
"docs": "https://craftcms.com/docs", | ||
"rss": "https://craftcms.com/changelog.rss" | ||
"email": "[email protected]", | ||
"issues": "https://github.com/nystudio107/craft/issues", | ||
"source": "https://github.com/nystudio107/craft", | ||
"docs": "https://github.com/nystudio107/craft" | ||
}, | ||
"minimum-stability": "beta", | ||
"minimum-stability": "RC", | ||
"require": { | ||
"php": ">=7.0.0", | ||
"craftcms/cms": "^3.0.0-beta.10", | ||
"craftcms/cms": "dev-release/3.0.0-RC1 as 3.0.0-RC1", | ||
"vlucas/phpdotenv": "^2.4.0", | ||
"roave/security-advisories": "dev-master", | ||
"nystudio107/craft3-transcoder": "^1.0" | ||
"yiisoft/yii2-redis": "^2.0.6", | ||
"nystudio107/craft3-multi-environment": "^1.0.5", | ||
"nystudio107/craft-scripts": "^1.2.4", | ||
"nystudio107/craft3-eagerbeaver": "^1.0.0", | ||
"nystudio107/craft3-imageoptimize": "^1.3.2", | ||
"nystudio107/craft3-minify": "^1.2.5", | ||
"nystudio107/craft3-typogrify": "^1.1.1" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php craft setup/welcome", | ||
"@php nys-setup welcome" | ||
] | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.