fix(dev): set local store port to 3300 and admin port to 3400 to avoid Windows port exclusions
Some checks failed
Deploy Canina / deploy (push) Successful in 1m48s
E2E Playwright Tests / Run Full E2E & Security Suites (push) Failing after 6s

This commit is contained in:
parsa aghaei 2026-08-29 14:10:52 +03:30
parent fadea346ff
commit 376fea356f
7 changed files with 631 additions and 629 deletions

View File

@ -4,7 +4,7 @@
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite --port 3100 --host 127.0.0.1", "dev": "vite --port 3400 --host 127.0.0.1",
"build": "vite build", "build": "vite build",
"lint": "eslint .", "lint": "eslint .",
"preview": "vite preview" "preview": "vite preview"

View File

@ -3,7 +3,7 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 3005", "dev": "next dev -p 3300",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -2,8 +2,8 @@ const { exec } = require('child_process');
const http = require('http'); const http = require('http');
const URLS = [ const URLS = [
{ url: 'http://localhost:3005', name: 'Frontend Store' }, { url: 'http://localhost:3300', name: 'Frontend Store' },
{ url: 'http://127.0.0.1:3100', name: 'Admin Panel' }, { url: 'http://127.0.0.1:3400', name: 'Admin Panel' },
{ url: 'http://localhost:4400/api/docs', name: 'Backend API Docs' } { url: 'http://localhost:4400/api/docs', name: 'Backend API Docs' }
]; ];