From a706dcf6a9b91ef2c3d1e1d28449b9b8e0e8187d Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Thu, 19 Mar 2026 20:16:23 +0000 Subject: Add support for headless Drupal integration with environment variables and Docker setup - Create .env.example for environment variable configuration - Update Dockerfile to accept Drupal-related build arguments - Enhance docker_build.yml to pass environment variables during Docker build - Add drupalClient and env configuration for API interaction - Implement local development instructions and Docker deployment steps in README - Add drupal and mariadb services to docker-stack.yml for complete setup - Update package.json and bun.lock to include axios and drupal-jsonapi-params dependencies - Add TypeScript definitions for new environment variables --- package.json | 2 ++ 1 file changed, 2 insertions(+) (limited to 'package.json') diff --git a/package.json b/package.json index 4f66904..7eaa64a 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,8 @@ }, "dependencies": { "@tailwindcss/vite": "^4.2.1", + "axios": "^1.13.6", + "drupal-jsonapi-params": "^3.0.1", "react": "^19.2.0", "react-dom": "^19.2.0", "tailwindcss": "^4.2.1" -- cgit