Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ademers committed Nov 28, 2019
0 parents commit 0aa88cd
Show file tree
Hide file tree
Showing 42 changed files with 89,529 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitignore
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
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.
33 changes: 33 additions & 0 deletions README.md
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
32 changes: 32 additions & 0 deletions composer.json
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');\""
]
}
}
Loading

0 comments on commit 0aa88cd

Please sign in to comment.