Updated to V3

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-09-23 13:04:20 +02:00
parent abefb301e0
commit 8da485f471
100 changed files with 24039 additions and 14077 deletions

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "docker build -f ./.devcontainer/Dockerfile -t nextjs_project_dev . && docker run --rm -it --mount type=bind,source=\"$(pwd)\",target=/app --publish 127.0.0.1:3000:3000 nextjs_project_dev",
"name": "Run devcontainer",
"request": "launch",
// "type": "",
"env": {
"DOCKER_BUILDKIT": "0"
}
}
]
}