Initial: Nutshell Site Aggregator MVP Phase 1
- Backend: Express + TypeORM + PostgreSQL, JWT + OTP auth - Frontend: React + Vite + Tailwind, 4 pages (Home/Login/Orders/404) - Docker Compose: PostgreSQL 15 on port 5434 - Tests: 16 tests passing (API + Frontend) - ai_state: rules.md, INSTRUCTIONS.md, session tasks - Examples: brand book PDF, logos, page mockups
This commit is contained in:
25
clean_install_frontend.bat
Normal file
25
clean_install_frontend.bat
Normal file
@@ -0,0 +1,25 @@
|
||||
@echo off
|
||||
REM Clear npm cache
|
||||
echo Clearing npm cache...
|
||||
npm cache clean --force
|
||||
|
||||
REM Go to frontend directory
|
||||
cd /d "d:\Nutshell\Site Aggreagator\frontend"
|
||||
|
||||
REM Delete node_modules if exists
|
||||
if exist node_modules (
|
||||
echo Deleting node_modules...
|
||||
rmdir /s /q node_modules
|
||||
)
|
||||
|
||||
REM Delete package-lock.json if exists
|
||||
if exist package-lock.json (
|
||||
echo Deleting package-lock.json...
|
||||
del package-lock.json
|
||||
)
|
||||
|
||||
REM Install dependencies
|
||||
echo Installing dependencies...
|
||||
npm install
|
||||
|
||||
echo Done!
|
||||
Reference in New Issue
Block a user