add deploy script
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,3 +11,4 @@ vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
.vercel
|
||||
vectorstore
|
||||
ecosystem.config.js
|
||||
|
22
scripts/deploy.sh
Normal file
22
scripts/deploy.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Pull the latest changes
|
||||
git pull
|
||||
|
||||
# Build the project
|
||||
npm run build
|
||||
|
||||
# Copy necessary files
|
||||
cp package.json ./build/
|
||||
cp package-lock.json ./build/
|
||||
|
||||
# Create or update the .env file
|
||||
# echo "ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY" >> ./build/.env
|
||||
#echo "OPENAI_API_KEY=$OPENAI_API_KEY" >> ./build/.env
|
||||
|
||||
# Navigate to build directory and install dependencies
|
||||
cd build
|
||||
npm install
|
||||
|
||||
# Restart the application
|
||||
pm2 restart ecosystem.config.js
|
Reference in New Issue
Block a user