Skip to content

Commit

Permalink
Complete cafienne development in dev container fixes #21
Browse files Browse the repository at this point in the history
- Have tests with callback running from devcontainer
  • Loading branch information
wjgerritsen-0001 committed Aug 26, 2022
1 parent 43d476d commit 1cce25e
Show file tree
Hide file tree
Showing 105 changed files with 5,174 additions and 7,712 deletions.
14 changes: 14 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=16-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"

# [Optional] Uncomment if you want to install more global node packages
# RUN su node -c "npm install -g <your-package-list -here>"
17 changes: 17 additions & 0 deletions .devcontainer/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=16-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}

# Install tslint, typescript. eslint is installed by javascript image
ARG NODE_MODULES="tslint-to-eslint-config typescript"
COPY library-scripts/meta.env /usr/local/etc/vscode-dev-containers
RUN su node -c "umask 0002 && npm install -g ${NODE_MODULES}" \
&& npm cache clean --force > /dev/null 2>&1

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
39 changes: 39 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/typescript-node
{
"name": "Cafienne Getting Started demo development project",
"service": "workspace",
"workspaceFolder": "/home/vscode/workspaces/cafienne/",
"dockerComposeFile": [
"../test/docker/docker-compose.yml",
"docker-compose.workspace.yml"
],

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"hbenl.vscode-mocha-test-adapter",
"hbenl.vscode-test-explorer",
"weakptr.javascript-test-runner",
"eamodio.gitlens",
"eg2.vscode-npm-script",
"ms-azuretools.vscode-docker",
"traBpUkciP.vscode-npm-scripts",
"ms-vscode.test-adapter-converter",
"redhat.vscode-yaml"
]
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [33077, 33080, 33081, 33077, 12378]

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "node"
}
12 changes: 12 additions & 0 deletions .devcontainer/docker-compose.workspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3'
services:
workspace:
image: wjgerritsen/cafienne-dev:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ../..:/home/vscode/workspaces/cafienne/
ports:
- 12378
tty: true # <- keeps container running
networks:
- dev
3 changes: 0 additions & 3 deletions .dockerignore

This file was deleted.

1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
COMPOSE_PROJECT_NAME=CafienneGettingStarted
Loading

0 comments on commit 1cce25e

Please sign in to comment.