Browse Source

add python env

liuyuqi-dellpc 1 year ago
parent
commit
b3e2cfe313

+ 26 - 0
python/.devcontainer2/Dockerfile

@@ -0,0 +1,26 @@
+FROM mcr.microsoft.com/devcontainers/python:3.9
+
+ENV PYTHONUNBUFFERED 1
+
+RUN apt-get update \
+  && apt-get install -y \
+  libcairo2 \
+  libgdk-pixbuf2.0-0 \
+  liblcms2-2 \
+  libopenjp2-7 \
+  libpango-1.0-0 \
+  libpangocairo-1.0-0 \
+  libssl3 \
+  libtiff6 \
+  libwebp7 \
+  libxml2 \
+  libpq5 \
+  shared-mime-info \
+  mime-support
+
+RUN echo 'image/webp webp' >> /etc/mime.types
+RUN echo 'image/avif avif' >> /etc/mime.types
+
+WORKDIR /app
+COPY requirements_dev.txt /tmp/pip-tmp/
+RUN pip --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements_dev.txt

+ 7 - 0
python/.devcontainer2/backend.env

@@ -0,0 +1,7 @@
+DATABASE_URL=postgres://saleor:saleor@db/saleor
+DASHBOARD_URL=http://localhost:9000/
+DEFAULT_FROM_EMAIL=noreply@example.com
+CELERY_BROKER_URL=redis://redis:6379/1
+SECRET_KEY=changeme
+# Mailpit
+EMAIL_URL=smtp://mailpit:1025

+ 2 - 0
python/.devcontainer2/common.env

@@ -0,0 +1,2 @@
+DEFAULT_CHANNEL_SLUG=default-channel
+HTTP_IP_FILTER_ALLOW_LOOPBACK_IPS=True

+ 39 - 0
python/.devcontainer2/devcontainer.json

@@ -0,0 +1,39 @@
+{
+	"name": "Saleor",
+	"dockerComposeFile": "docker-compose.yml",
+	"service": "saleor",
+	"workspaceFolder": "/app",
+	"forwardPorts": [
+		8000,
+		"dashboard:9000",
+		"mailpit:8025"
+	],
+	"portsAttributes": {
+		"8000": {
+			"label": "Saleor Core"
+		},
+		"dashboard:9000": {
+			"label": "Saleor Dashboard"
+		},
+		"mailpit:8025": {
+			"label": "Mailpit UI"
+		}
+	},
+	"postCreateCommand": "python manage.py migrate",
+	"customizations": {
+		"vscode": {
+			"extensions": [
+				"Cameron.vscode-pytest",
+				"charliermarsh.ruff",
+				"editorconfig.editorconfig",
+				"ms-python.black-formatter",
+				"ms-python.flake8",
+				"ms-python.isort",
+				"ms-python.pylint",
+				"ms-python.python",
+				"ms-python.vscode-pylance",
+				"streetsidesoftware.code-spell-checker"
+			]
+		}
+	}
+}

+ 51 - 0
python/.devcontainer2/docker-compose.yml

@@ -0,0 +1,51 @@
+version: "3.4"
+
+services:
+  saleor:
+    image: saleor
+    build:
+      context: ..
+      dockerfile: .devcontainer/Dockerfile
+    command: /bin/sh -c "while sleep 1000; do :; done"
+    env_file:
+      - common.env
+      - backend.env
+    depends_on:
+      - db
+      - redis
+    volumes:
+      - ..:/app
+
+  dashboard:
+    image: ghcr.io/saleor/saleor-dashboard:3.15.2
+    restart: unless-stopped
+    ports:
+      - 9000:80
+
+  db:
+    image: library/postgres:13-alpine
+    restart: unless-stopped
+    volumes:
+      - saleor-db:/var/lib/postgresql/data
+    environment:
+      - POSTGRES_USER=saleor
+      - POSTGRES_PASSWORD=saleor
+
+  redis:
+    image: library/redis:7.0-alpine
+    restart: unless-stopped
+    volumes:
+      - saleor-redis:/data
+
+  mailpit:
+    image: axllent/mailpit
+    ports:
+      - "1025" # SMTP Server
+      - "8025" # Mailpit UI
+    restart: unless-stopped
+
+volumes:
+  saleor-db:
+    driver: local
+  saleor-redis:
+    driver: local