-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README, metadata & remove Lando
- Loading branch information
Showing
8 changed files
with
71 additions
and
80 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 |
---|---|---|
|
@@ -4,7 +4,6 @@ ehthumbs.db | |
Icon? | ||
Thumbs.db | ||
*.swp | ||
.vscode | ||
|
||
# Custom | ||
_meta | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"streetsidesoftware.code-spell-checker", | ||
"bierner.markdown-preview-github-styles", | ||
"fcrespo82.markdown-table-formatter" | ||
] | ||
} |
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,18 @@ | ||
{ | ||
"cSpell.diagnosticLevel": "Information", | ||
"cSpell.words": [ | ||
"autowire", | ||
"Birke", | ||
"charette", | ||
"Grav", | ||
"Laravel", | ||
"Mele", | ||
"middlewares", | ||
"phpstan", | ||
"Phpunit", | ||
"Rememberme", | ||
"Sprunje", | ||
"UserFrosting", | ||
"weissman" | ||
], | ||
} |
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,40 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Docker Build", | ||
"type": "shell", | ||
"command": "docker build -t learn:latest .", | ||
"problemMatcher": [], | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Launch Docker", | ||
"type": "shell", | ||
"command": "docker run -d --rm --name=learn -p 8888:80 -v \"$(pwd):/var/www/grav/user\" learn:latest", | ||
"problemMatcher": [], | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Launch Docker (No Destroy)", | ||
"type": "shell", | ||
"command": "docker run -d --name=learn -p 8080:80 -v \"$(pwd):/var/www/grav/user\" learn:latest", | ||
"problemMatcher": [], | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Stop Docker", | ||
"type": "shell", | ||
"command": "docker stop learn", | ||
"problemMatcher": [], | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Access Docker", | ||
"type": "shell", | ||
"command": "docker exec -it learn bash", | ||
"problemMatcher": [], | ||
"group": "build" | ||
} | ||
] | ||
} |
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