Replace UI module with Next.js
This commit is contained in:
parent
8aeff18162
commit
616205fe73
91 changed files with 3570 additions and 722 deletions
|
@ -3,16 +3,13 @@
|
|||
"workspaceFolder": "/home/project/seedling",
|
||||
"dockerComposeFile": "docker-compose.yml",
|
||||
"service": "seedling",
|
||||
"postCreateCommand": "sudo chown iamuser:iamuser -R /home/project",
|
||||
"postCreateCommand": "sudo chown iamuser:iamuser /home/project",
|
||||
"runServices": [
|
||||
"selenium"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"Fooxly.themeswitch",
|
||||
"EditorConfig.EditorConfig",
|
||||
"rvest.vs-code-prettier-eslint",
|
||||
"wix.vscode-import-cost",
|
||||
"mia-hall.vscode-git-branch-sidebar"
|
||||
]
|
||||
"extensions": []
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,18 +1,42 @@
|
|||
version: "3"
|
||||
|
||||
name: seedling
|
||||
|
||||
volumes:
|
||||
node_modules:
|
||||
pnpm-store:
|
||||
|
||||
networks:
|
||||
net:
|
||||
name: seedling_net
|
||||
driver: bridge
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 10.2.1.0/24
|
||||
gateway: 10.2.1.1
|
||||
|
||||
services:
|
||||
seedling:
|
||||
build:
|
||||
context: .
|
||||
container_name: seedling
|
||||
volumes:
|
||||
- ../:/home/project/seedling
|
||||
- ../:/home/project/seedling:delegated
|
||||
- node_modules:/home/project/seedling/node_modules
|
||||
- pnpm-store:/home/project/seedling/.pnpm-store
|
||||
command: sleep infinity
|
||||
command: sleep infinity
|
||||
networks:
|
||||
net:
|
||||
ipv4_address: 10.2.1.2
|
||||
|
||||
selenium:
|
||||
image: seleniarm/standalone-chromium:114.0
|
||||
container_name: seedling-selenium
|
||||
shm_size: 2gb
|
||||
environment:
|
||||
- SE_VNC_NO_PASSWORD=1
|
||||
ports:
|
||||
- 7900:7900
|
||||
- 5900:5900
|
||||
- 4444:4444
|
||||
networks:
|
||||
net:
|
||||
ipv4_address: 10.2.1.4
|
Loading…
Add table
Add a link
Reference in a new issue