Add .devcontainer + minor changes
This commit is contained in:
parent
99831ff824
commit
8aeff18162
16 changed files with 59 additions and 23 deletions
|
@ -1,3 +1 @@
|
||||||
FROM local/nodejs/dev:18
|
FROM local/nodejs/dev:18
|
||||||
|
|
||||||
USER node
|
|
|
@ -3,7 +3,7 @@
|
||||||
"workspaceFolder": "/home/project/seedling",
|
"workspaceFolder": "/home/project/seedling",
|
||||||
"dockerComposeFile": "docker-compose.yml",
|
"dockerComposeFile": "docker-compose.yml",
|
||||||
"service": "seedling",
|
"service": "seedling",
|
||||||
"postCreateCommand": "sudo chown node:node -R /home/project",
|
"postCreateCommand": "sudo chown iamuser:iamuser -R /home/project",
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
|
|
1
.eslintignore
Normal file
1
.eslintignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
source/
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,6 +4,7 @@ app/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
.vscode/
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
|
||||||
.pnpm/
|
.pnpm/
|
||||||
.pnpm-store/
|
.pnpm-store/
|
26
create.js
26
create.js
|
@ -7,14 +7,14 @@ const argv = require('minimist')(process.argv.slice(2));
|
||||||
const appName = argv.name ?? 'app';
|
const appName = argv.name ?? 'app';
|
||||||
const appPort = argv.port ?? '0';
|
const appPort = argv.port ?? '0';
|
||||||
|
|
||||||
const defaultContextDir = './';
|
const defaultContextDir = '.';
|
||||||
const rootDir = __dirname;
|
const rootDir = __dirname;
|
||||||
const contextDir = `${argv._[0]}/` ?? defaultContextDir;
|
const contextDir = `${argv._[0] ?? defaultContextDir}`;
|
||||||
|
|
||||||
// create app folder
|
// create app folder
|
||||||
const appsDir = `${contextDir}/apps`;
|
const appsDir = `${contextDir}/apps`;
|
||||||
const uiDir = `${contextDir}/apps/${appName}-ui`;
|
const uiDir = `${contextDir}/apps/${appName}-ui`;
|
||||||
const apiDir = `${contextDir}/apps/${appName}-rest`;
|
const restDir = `${contextDir}/apps/${appName}-rest`;
|
||||||
|
|
||||||
// prepare structure folders
|
// prepare structure folders
|
||||||
if (!fs.existsSync(uiDir)) {
|
if (!fs.existsSync(uiDir)) {
|
||||||
|
@ -24,8 +24,8 @@ if (!fs.existsSync(uiDir)) {
|
||||||
fs.mkdirSync(appsDir);
|
fs.mkdirSync(appsDir);
|
||||||
fs.mkdirSync(uiDir);
|
fs.mkdirSync(uiDir);
|
||||||
fs.mkdirSync(`${uiDir}/src`);
|
fs.mkdirSync(`${uiDir}/src`);
|
||||||
fs.mkdirSync(apiDir);
|
fs.mkdirSync(restDir);
|
||||||
fs.mkdirSync(`${apiDir}/src`);
|
fs.mkdirSync(`${restDir}/src`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// copy folder content
|
// copy folder content
|
||||||
|
@ -38,7 +38,7 @@ try {
|
||||||
force: true,
|
force: true,
|
||||||
recursive: true,
|
recursive: true,
|
||||||
});
|
});
|
||||||
fs.cpSync(`${rootDir}/source/rest/`, apiDir, {
|
fs.cpSync(`${rootDir}/source/rest/`, restDir, {
|
||||||
force: true,
|
force: true,
|
||||||
recursive: true,
|
recursive: true,
|
||||||
});
|
});
|
||||||
|
@ -55,29 +55,29 @@ fs.renameSync(`${contextDir}/gitignore`, `${contextDir}/.gitignore`);
|
||||||
fs.renameSync(`${contextDir}/prettierrc`, `${contextDir}/.prettierrc`);
|
fs.renameSync(`${contextDir}/prettierrc`, `${contextDir}/.prettierrc`);
|
||||||
fs.renameSync(`${contextDir}/.tsconfig.json`, `${contextDir}/tsconfig.json`);
|
fs.renameSync(`${contextDir}/.tsconfig.json`, `${contextDir}/tsconfig.json`);
|
||||||
fs.renameSync(`${uiDir}/.tsconfig.json`, `${uiDir}/tsconfig.json`);
|
fs.renameSync(`${uiDir}/.tsconfig.json`, `${uiDir}/tsconfig.json`);
|
||||||
fs.renameSync(`${apiDir}/.tsconfig.json`, `${apiDir}/tsconfig.json`);
|
fs.renameSync(`${restDir}/.tsconfig.json`, `${restDir}/tsconfig.json`);
|
||||||
|
|
||||||
// replace in files
|
// replace in files
|
||||||
replaceInFiles.sync({
|
replaceInFiles.sync({
|
||||||
files: `./${contextDir}/**/*.{ts,tsx}`,
|
files: [`${contextDir}/**/*`, `${contextDir}/.devcontainer/*`],
|
||||||
from: /\/\/.\@ts\-nocheck\n/gm,
|
from: /\/\/.@ts-nocheck\n/gm,
|
||||||
to: '',
|
to: '',
|
||||||
});
|
});
|
||||||
replaceInFiles.sync({
|
replaceInFiles.sync({
|
||||||
files: `./${contextDir}/**/*`,
|
files: [`${contextDir}/**/*`, `${contextDir}/.devcontainer/*`],
|
||||||
from: /\$\(appName\)/gm,
|
from: /\$\(appName\)/gm,
|
||||||
to: appName,
|
to: appName,
|
||||||
});
|
});
|
||||||
replaceInFiles.sync({
|
replaceInFiles.sync({
|
||||||
files: `./${contextDir}/**/*`,
|
files: [`${contextDir}/**/*`, `${contextDir}/.devcontainer/*`],
|
||||||
from: /\$\(AppName\)/gm,
|
from: /\$\(AppName\)/gm,
|
||||||
to: appName.charAt(0).toUpperCase() + appName.slice(1),
|
to: appName.charAt(0).toUpperCase() + appName.slice(1),
|
||||||
});
|
});
|
||||||
replaceInFiles.sync({
|
replaceInFiles.sync({
|
||||||
files: `./${contextDir}/**/*`,
|
files: [`${contextDir}/**/*`, `${contextDir}/.devcontainer/*`],
|
||||||
from: /\$\(appPort\)/gm,
|
from: /\$\(appPort\)/gm,
|
||||||
to: appPort,
|
to: appPort,
|
||||||
});
|
});
|
||||||
|
|
||||||
// install deps
|
// install deps
|
||||||
execSync(`pnpm i`, { cwd: `./${contextDir}` })
|
execSync(`pnpm i`, { cwd: `${contextDir}` });
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
"release": "pnpm version --no-git-tag-version"
|
"release": "pnpm version --no-git-tag-version"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"app": "link:app",
|
|
||||||
"minimist": "1.2.8",
|
"minimist": "1.2.8",
|
||||||
"replace-in-file": "7.0.2"
|
"replace-in-file": "7.0.2"
|
||||||
},
|
},
|
||||||
|
|
3
pnpm-lock.yaml
generated
3
pnpm-lock.yaml
generated
|
@ -5,9 +5,6 @@ settings:
|
||||||
excludeLinksFromLockfile: false
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
app:
|
|
||||||
specifier: link:app
|
|
||||||
version: link:app
|
|
||||||
minimist:
|
minimist:
|
||||||
specifier: 1.2.8
|
specifier: 1.2.8
|
||||||
version: 1.2.8
|
version: 1.2.8
|
||||||
|
|
1
source/common/.devcontainer/Dockerfile
Normal file
1
source/common/.devcontainer/Dockerfile
Normal file
|
@ -0,0 +1 @@
|
||||||
|
FROM local/nodejs/dev:18
|
7
source/common/.devcontainer/devcontainer.json
Normal file
7
source/common/.devcontainer/devcontainer.json
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "$(appName)",
|
||||||
|
"workspaceFolder": "/home/project/$(appName)",
|
||||||
|
"dockerComposeFile": "docker-compose.yml",
|
||||||
|
"service": "$(appName)",
|
||||||
|
"postCreateCommand": "sudo chown iamuser:iamuser -R /home/project",
|
||||||
|
}
|
18
source/common/.devcontainer/docker-compose.yml
Normal file
18
source/common/.devcontainer/docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
name: $(appName)
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
node_modules:
|
||||||
|
pnpm-store:
|
||||||
|
|
||||||
|
services:
|
||||||
|
seedling:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
container_name: $(appName)
|
||||||
|
volumes:
|
||||||
|
- ../:/home/project/$(appName)
|
||||||
|
- node_modules:/home/project/seedling/node_modules
|
||||||
|
- pnpm-store:/home/project/seedling/.pnpm-store
|
||||||
|
command: sleep infinity
|
1
source/common/.env
Normal file
1
source/common/.env
Normal file
|
@ -0,0 +1 @@
|
||||||
|
COMPOSE_PROJECT_NAME=$(appName)
|
|
@ -1,7 +1,7 @@
|
||||||
const { merge } = require('webpack-merge');
|
const { merge } = require('webpack-merge');
|
||||||
|
|
||||||
const common = require('./webpack-common');
|
const common = require('./webpack-common');
|
||||||
const myEnv = require('dotenv').config({ path: 'config/local/.env' }).parsed;
|
const myEnv = require('dotenv').config({ path: 'config/app/.env.local' }).parsed;
|
||||||
|
|
||||||
module.exports = (env, args) => {
|
module.exports = (env, args) => {
|
||||||
return merge(common(env, args, myEnv), {
|
return merge(common(env, args, myEnv), {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
const { merge } = require('webpack-merge');
|
const { merge } = require('webpack-merge');
|
||||||
|
|
||||||
const myEnv = require('dotenv').config({ path: 'config/prod/.env' }).parsed;
|
const myEnv = require('dotenv').config({ path: 'config/app/.env.prod' }).parsed;
|
||||||
const common = require('./webpack-common');
|
const common = require('./webpack-common');
|
||||||
|
|
||||||
// const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
// const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace NodeJS {
|
||||||
|
interface ProcessEnv {
|
||||||
|
ENDPOINT_BASE_URL: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default global;
|
Loading…
Add table
Reference in a new issue