Skip to content

Commit

Permalink
chore: deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
romelperez committed Jan 16, 2021
1 parent da5555c commit 7e47594
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/sh

# In deployment server:
# 1) Fetch the latest repository changes.
# 2) Re-install dependencies.
# 3) Build applications.

git fetch origin main
git reset --hard origin/main

nvm use

# WORKSPACE

npm install

# PLAYGROUND

cd ./playground

npm install
npm run build

cd ..

# WEBSITE

cd ./website

npm install
npm run build

cd ..

0 comments on commit 7e47594

Please sign in to comment.