quantumbit commited on
Commit
d061fab
·
verified ·
1 Parent(s): aa01519

Delete setup.bat

Browse files
Files changed (1) hide show
  1. setup.bat +0 -53
setup.bat DELETED
@@ -1,53 +0,0 @@
1
- @echo off
2
- echo ============================================
3
- echo Invoice Extractor - Complete Setup
4
- echo ============================================
5
- echo.
6
-
7
- echo [1/4] Installing Backend Dependencies...
8
- pip install -r requirements.txt
9
- if errorlevel 1 (
10
- echo ERROR: Failed to install backend dependencies
11
- pause
12
- exit /b 1
13
- )
14
- echo ✓ Backend dependencies installed
15
- echo.
16
-
17
- echo [2/4] Installing Frontend Dependencies...
18
- cd frontend
19
- call npm install
20
- if errorlevel 1 (
21
- echo ERROR: Failed to install frontend dependencies
22
- pause
23
- exit /b 1
24
- )
25
- echo ✓ Frontend dependencies installed
26
- echo.
27
-
28
- echo [3/4] Setting up Frontend Environment...
29
- if not exist .env (
30
- copy .env.example .env
31
- echo ✓ Created .env file
32
- ) else (
33
- echo ✓ .env file already exists
34
- )
35
- cd ..
36
- echo.
37
-
38
- echo [4/4] Setup Complete!
39
- echo.
40
- echo ============================================
41
- echo Ready to start the application!
42
- echo ============================================
43
- echo.
44
- echo To start the backend:
45
- echo python app.py
46
- echo.
47
- echo To start the frontend:
48
- echo cd frontend
49
- echo npm run dev
50
- echo.
51
- echo Then open http://localhost:3000 in your browser
52
- echo ============================================
53
- pause