mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 21:03:08 +00:00
fix: update port configuration across application files
- Changed the static server port from 5173 to 3007 in init.mjs, playwright.config.ts, vite.config.mts, and main.ts to ensure consistency in server setup and availability. - Updated logging messages to reflect the new port configuration.
This commit is contained in:
6
init.mjs
6
init.mjs
@@ -301,8 +301,8 @@ async function main() {
|
||||
}
|
||||
|
||||
// Kill any existing processes on required ports
|
||||
log('Checking for processes on ports 5173 and 3008...', 'yellow');
|
||||
await killPort(5173);
|
||||
log('Checking for processes on ports 3007 and 3008...', 'yellow');
|
||||
await killPort(3007);
|
||||
await killPort(3008);
|
||||
console.log('');
|
||||
|
||||
@@ -377,7 +377,7 @@ async function main() {
|
||||
}
|
||||
|
||||
log('✓ Server is ready!', 'green');
|
||||
log(`The application will be available at: http://localhost:5173`, 'green');
|
||||
log(`The application will be available at: http://localhost:3007`, 'green');
|
||||
console.log('');
|
||||
|
||||
// Start web app
|
||||
|
||||
Reference in New Issue
Block a user