Skip to content

Commit 5ceae68

Browse files
committed
hell
1 parent edc6c6a commit 5ceae68

File tree

4 files changed

+63
-0
lines changed

4 files changed

+63
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
3+
{
4+
"name": "Existing Dockerfile",
5+
"build": {
6+
// Sets the run context to one level up instead of the .devcontainer folder.
7+
"context": "..",
8+
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
9+
"dockerfile": "../Dockerfile"
10+
}
11+
12+
// Features to add to the dev container. More info: https://containers.dev/features.
13+
// "features": {},
14+
15+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
16+
// "forwardPorts": [],
17+
18+
// Uncomment the next line to run commands after the container is created.
19+
// "postCreateCommand": "cat /etc/os-release",
20+
21+
// Configure tool-specific properties.
22+
// "customizations": {},
23+
24+
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
25+
// "remoteUser": "devcontainer"
26+
}

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:19 AS base
2+
RUN touch ~/.bashrc && chmod +x ~/.bashrc
3+
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
4+
RUN . ~/.nvm/nvm.sh
5+
RUN . ~/.nvm/nvm.sh install 13
6+
RUN . ~/.nvm/nvm.sh use 13
7+
RUN apt update
8+
RUN apt install -y python2
9+
RUN python2 -v
10+
11+
FROM base AS build
12+
WORKDIR /app
13+
COPY package.json .
14+
RUN npm install
15+
COPY . .

src/csh-material-bootstrap.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,3 +767,13 @@ select.form-control {
767767
}
768768
}
769769
}
770+
771+
772+
// DARK THEME =============================
773+
774+
.dark-theme {
775+
body {
776+
background-color: rgb(34, 34, 34);
777+
color: #eee;
778+
}
779+
}

0 commit comments

Comments
 (0)