aboutsummaryrefslogtreecommitdiff
path: root/scripts/build
blob: 8e958976380f3e8b839792f1bafb8be4735e5e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

web_root=/home/loek/gert

cd $(dirname $0)

echo "> generating posts.json..."
./genposts

cd ..

echo "> building static files..."
npx next build

echo "> exporting static files..."
npx next export

echo "> moving static files to $web_root..."
mv out $web_root