Merge pull request 'Add support for DevContainers for easier development' (#1) from feat-devcontainers into main
Reviewed-on: #1
This commit is contained in:
commit
9afd0345e9
22
.devcontainer/devcontainer.json
Normal file
22
.devcontainer/devcontainer.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||||
|
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
|
||||||
|
{
|
||||||
|
"name": "Debian",
|
||||||
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||||
|
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/hugo:1": {}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
|
// "features": {},
|
||||||
|
|
||||||
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
|
// "forwardPorts": [],
|
||||||
|
|
||||||
|
// Configure tool-specific properties.
|
||||||
|
// "customizations": {},
|
||||||
|
|
||||||
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||||
|
// "remoteUser": "root"
|
||||||
|
}
|
@ -6,6 +6,15 @@ This repo hosts the website for Open Bokeron which is a student organization in
|
|||||||
|
|
||||||
The philosophy with this website for now is to KISS(keep it stupid simple) using only HTML5 & CSS 3.
|
The philosophy with this website for now is to KISS(keep it stupid simple) using only HTML5 & CSS 3.
|
||||||
|
|
||||||
|
## Developer preview
|
||||||
|
|
||||||
|
You need [Hugo](https://gohugo.io/) installed.
|
||||||
|
To get a local preview you can run the server on your host or using [Development Containers](https://containers.dev/) included.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
hugo server
|
||||||
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [x] Add our logo on the website, favicon.
|
- [x] Add our logo on the website, favicon.
|
||||||
|
Loading…
Reference in New Issue
Block a user