initial commit - code moved to separate repo

This commit is contained in:
Dobromir Popov
2024-02-22 04:19:38 +02:00
commit 560d503219
240 changed files with 105125 additions and 0 deletions

26
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,26 @@
FROM node:18-slim
# Set the working directory in the container
WORKDIR /workspace
# Copy package.json and package-lock.json to the container
# skip if we use bind
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code to the container
# skip if we use bind
COPY . .
# Expose the default Next.js port
EXPOSE 5011
# Start the Next.js development server
CMD ["npm", "run", "run"]
# CMD ["npm", "run", "debug"]
# RUN npm run build
# the -- in the command is used to pass the following arguments directly to the script (or command) that npm start runs.
# CMD ["npm", "start", "--", "-p", "3010"]

View File

@ -0,0 +1,39 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
{
"name": "Existing Docker Compose (Extend)",
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
"dockerComposeFile": [
"../docker-compose.yml"
// "docker-compose.yml"
],
// The 'service' property is the name of the service for the container that VS Code should
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
"service": "next-cart-app",
// The optional 'workspaceFolder' property is the path VS Code should open by default when
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
// "workspaceFolder": "/workspace/${localWorkspaceFolderBasename}",
"workspaceFolder": "/workspace",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {
// "ghcr.io/devcontainers-contrib/features/prisma:2": {}
// },
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [
// 3010
// ],
// Uncomment the next line if you want start specific services in your Docker Compose config.
// "runServices": [],
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
// "shutdownAction": "none",
// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "cat /etc/os-release",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "devcontainer"
"mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached"
]
}