-
Notifications
You must be signed in to change notification settings - Fork 1
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 c5d88f3
Showing
2 changed files
with
39 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,17 @@ | ||
# silverstripe-standard-base | ||
|
||
This is the standard base module used by Twohill & Co to get up and running in SilverStripe 4 quickly. | ||
|
||
## Prerequisites | ||
|
||
* Composer | ||
* NPM | ||
* Docker | ||
|
||
## Getting Started | ||
|
||
`composer create-project twohill/silverstripe-standard-base /path/to/project` | ||
|
||
`SS_DATABASE_PASSWORD=mypass docker compose` | ||
|
||
`npm watch` |
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,22 @@ | ||
{ | ||
"name": "twohill/silverstripe-standard-base", | ||
"description": "The base SilverStripe installation recipe with development tools. Uses Webpack for frontend and Docker for hosting", | ||
"type": "silverstripe-recipe", | ||
"license": "BSD-3", | ||
"authors": [ | ||
{ | ||
"name": "Al Twohill", | ||
"email": "al@twohill.nz" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=7.1", | ||
"silverstripe/recipe-plugin": "^1.2", | ||
"silverstripe/recipe-cms": "4.2.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.3.1" | ||
} | ||
} |