-
Notifications
You must be signed in to change notification settings - Fork 6
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 0aa88cd
Showing
42 changed files
with
89,529 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,41 @@ | ||
# CRAFT ENVIRONMENT | ||
.env* | ||
|
||
# COMPOSER | ||
/vendor | ||
|
||
# CRAFT STORAGE | ||
/storage/* | ||
!/storage/.gitignore | ||
|
||
# ASSETS | ||
/web/assets/* | ||
!/web/assets/.gitignore | ||
/web/cpresources/* | ||
|
||
# BUILD FILES | ||
/bower_components/* | ||
/node_modules/* | ||
/build/* | ||
/yarn-error.log | ||
/npm-debug.log | ||
|
||
# MISC FILES | ||
.cache | ||
.DS_Store | ||
hot | ||
.idea | ||
.project | ||
.settings | ||
*.esproj | ||
*.sublime-workspace | ||
*.sublime-project | ||
*.tmproj | ||
*.tmproject | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
config.codekit3 | ||
prepros-6.config |
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,9 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## 1.0.0 - 2019-11-28 | ||
### Added | ||
- Initial release. |
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,33 @@ | ||
# Craft CMS Starter Project | ||
|
||
A [Craft CMS](https://craftcms.com/) starter project by [Andrea DeMers](http://andreademers.com). | ||
|
||
## Content Management System (CMS) | ||
- [Craft CMS](https://craftcms.com/) | ||
|
||
## Craft CMS Plugins | ||
- [Contact Form](https://plugins.craftcms.com/contact-form) | ||
- [Imager](https://plugins.craftcms.com/imager) | ||
- [Mailgun](https://plugins.craftcms.com/mailgun) | ||
- [Minify](https://plugins.craftcms.com/minify) | ||
- [Redactor](https://plugins.craftcms.com/redactor) | ||
- [Retcon](https://plugins.craftcms.com/retcon) | ||
- [SEOmatic](https://plugins.craftcms.com/seomatic) | ||
- [Twigpack](https://plugins.craftcms.com/twigpack) | ||
|
||
## PHP Packages | ||
- [Craft Scripts](https://packagist.org/packages/nystudio107/craft-scripts) | ||
|
||
## Front-end | ||
### Build Tools | ||
- [Laravel Mix](https://github.com/JeffreyWay/laravel-mix) | ||
|
||
### CSS | ||
- [Tailwind CSS](https://tailwindcss.com/) | ||
|
||
### JavaScript | ||
- [lazySizes](https://afarkas.github.io/lazysizes/index.html) | ||
- [Vue.js](https://vuejs.org/) | ||
|
||
## Todo | ||
- [] Configure PurgeCSS |
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,32 @@ | ||
{ | ||
"require": { | ||
"aelvan/imager": "^2.3", | ||
"craftcms/cms": "^3.0.0", | ||
"craftcms/contact-form": "^2.2", | ||
"craftcms/mailgun": "^1.4", | ||
"craftcms/redactor": "^2.4", | ||
"mmikkel/retcon": "^2.0", | ||
"nystudio107/craft-minify": "^1.2", | ||
"nystudio107/craft-scripts": "^1.2", | ||
"nystudio107/craft-seomatic": "^3.2", | ||
"nystudio107/craft-twigpack": "^1.1", | ||
"vlucas/phpdotenv": "^3.4.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"modules\\": "modules/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"optimize-autoloader": true, | ||
"platform": { | ||
"php": "7.0" | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
] | ||
} | ||
} |
Oops, something went wrong.