Posts

Showing posts from October, 2025

connecting two n8n container instance for working together

 PS C:\Users\bum> docker ps CONTAINER ID   IMAGE                                         COMMAND                  CREATED       STATUS          PORTS                                         NAMES 0dc3827004e7   google-maps-scraper-main-scraper-api:latest   "uvicorn gmaps_scrap…"   3 hours ago   Up 52 minutes   0.0.0.0:5689->8001/tcp, [::]:5689->8001/tcp   gmaps_scraper_api_service a3e3df5ef8f2   n8nio/n8n:latest                              "tini -- /docker-ent…"   3 days ago    Up 2 hours    ...

next js frontend

Run the following command in your ./launchpad/next folder yarn && yarn build && yarn start change port for nextjs {   "name": "nextjs",   "version": "0.1.0",   "private": true,   "scripts": {     "dev": "next dev -p 3001--turbopack",     "build": "next build",     "start": "next start -p 3001",     "lint": "next lint",     "clean": "rm -rf .next && rm -rf node_modules && npm i"   }, added -p 3001 in dev ans start npm run start .htaccess REWRITERULE ^(.*)$ HTTP://nextjscloudvariation/$1 [P]

install strapi

 1. Update your server sudo apt update && sudo apt upgrade -y 2. Install Node.js (LTS recommended, e.g. Node 18 or 20) Strapi requires Node.js ≥ 18. Install using NodeSource (recommended): curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt install -y nodejs Check version: node -v npm -v 3. Install Yarn (optional but recommended) npm install -g yarn Check version: yarn -v 4. Install Strapi (using npx) Go to the folder where you want Strapi: root@server1:/home/strapi.cloudvariation.in/public_html# npx create-strapi-app@latest cloudvariation  Strapi   v5.25.0 🚀 Let's create your new project 🚀 Welcome to Strapi! Ready to bring your project to life? Create a free account and get: ✨ 30 days of access to the Growth plan, which includes: ✅ Single Sign-On (SSO) login ✅ Content History ✅ Releases ? Please log in or sign up. Skip ? Do you want to use the default database (sqlite) ? Yes ? Start with an example structure & data? Yes ? Start w...