Add devcontainer configs
This commit is contained in:
parent
76a12e2c33
commit
0f988ee4fa
29
.devcontainer/devcontainer.json
Normal file
29
.devcontainer/devcontainer.json
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"name": "Jekyll web development",
|
||||||
|
"image": "mcr.microsoft.com/vscode/devcontainers/ruby:2.7",
|
||||||
|
// Set any default VSCode settings here
|
||||||
|
"settings": {
|
||||||
|
"terminal.integrated.shell.linux": "/bin/bash"
|
||||||
|
},
|
||||||
|
"forwardPorts": [
|
||||||
|
4000
|
||||||
|
],
|
||||||
|
// Any extensions you want can go here
|
||||||
|
"extensions": [
|
||||||
|
"rebornix.Ruby",
|
||||||
|
"yzhang.markdown-all-in-one",
|
||||||
|
"fcrespo82.markdown-table-formatter",
|
||||||
|
"sissel.shopify-liquid",
|
||||||
|
"wscats.qf",
|
||||||
|
"aessoft.aessoft-class-autocomplete",
|
||||||
|
"zignd.html-css-class-completion",
|
||||||
|
"ecmel.vscode-html-css",
|
||||||
|
"jeffersonqin.latex-snippets-jeff",
|
||||||
|
"goessner.mdmath",
|
||||||
|
"sibiraj-s.vscode-scss-formatter",
|
||||||
|
"streetsidesoftware.code-spell-checker",
|
||||||
|
"osteele.jekyll",
|
||||||
|
"GitHub.vscode-pull-request-github"
|
||||||
|
],
|
||||||
|
// "postCreateCommand": "bundle install",
|
||||||
|
}
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -5,5 +5,6 @@
|
|||||||
"Starlark",
|
"Starlark",
|
||||||
"microcontrollers",
|
"microcontrollers",
|
||||||
"videographers"
|
"videographers"
|
||||||
]
|
],
|
||||||
|
"compile-hero.disable-compile-files-on-did-save-code": true
|
||||||
}
|
}
|
44
.vscode/tasks.json
vendored
Normal file
44
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"label": "Start local server",
|
||||||
|
"command": "bundle exec jekyll serve -H 0.0.0.0 --drafts -P 4000 --future -l",
|
||||||
|
"group": {
|
||||||
|
"kind": "test",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "new"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"label": "Build website",
|
||||||
|
"command": "bundle exec jekyll build",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "new"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"label": "Update dependencies",
|
||||||
|
"command": "bundle install",
|
||||||
|
"group": "build",
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "new"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
21
README.md
21
README.md
@ -1,2 +1,21 @@
|
|||||||
# website
|
# RetryLife.ca
|
||||||
|
|
||||||
|
This repository contains the source code for [retrylife.ca](https://retrylife.ca), [@ewpratten](https://github.com/ewpratten)'s personal website.
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
To begin developing with this project, the following are required:
|
||||||
|
|
||||||
|
- [VsCode](https://code.visualstudio.com/)
|
||||||
|
- [Docker](https://www.docker.com/get-started)
|
||||||
|
- [Remote Development plugin](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
|
||||||
|
|
||||||
|
### Starting up the workspace
|
||||||
|
|
||||||
|
Once the prerequisite programs are installed, clone this repo to your computer, and open it with VsCode. A small box will pop up in the lower right of your screen asking if you would like to re-open the project in a `devcontainer`. Once accepting that box, VsCode will reload, and start download all the dependancies and tools needed for development. This will take a few minutes, and there will be a progress bar in the lower right corner of the screen.
|
||||||
|
|
||||||
|
### The development process
|
||||||
|
|
||||||
|
Once you have loaded the workspace, press <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd>, type `run task`, and press <kbd>Enter</kbd>. This will open the project tasks menu. This is where you can interact with the build tools. The first time you load the project, you will need to select `Update dependencies`, and run it *without scanning task output*. This will load the needed Ruby libraries for the website.
|
||||||
|
|
||||||
|
Once done, open the tasks menu again, and start the server with the `Start local server` command. The website will now be live at [localhost:4000](http://localhost:4000).
|
25
_config.yml
25
_config.yml
@ -64,14 +64,17 @@ plugins:
|
|||||||
- jekyll-seo-tag
|
- jekyll-seo-tag
|
||||||
- jekyll-github-metadata
|
- jekyll-github-metadata
|
||||||
|
|
||||||
# Exclude from processing.
|
exclude:
|
||||||
# The following items will not be processed, by default. Create a custom list
|
- Gemfile
|
||||||
# to override the default setting.
|
- Gemfile.lock
|
||||||
# exclude:
|
- node_modules
|
||||||
# - Gemfile
|
- vendor/bundle/
|
||||||
# - Gemfile.lock
|
- vendor/cache/
|
||||||
# - node_modules
|
- vendor/gems/
|
||||||
# - vendor/bundle/
|
- vendor/ruby/
|
||||||
# - vendor/cache/
|
- .devcontainer/
|
||||||
# - vendor/gems/
|
- .vscode/
|
||||||
# - vendor/ruby/
|
- README.md
|
||||||
|
- package-lock.json
|
||||||
|
- CNAME
|
||||||
|
- .gitignore
|
||||||
|
Loading…
x
Reference in New Issue
Block a user