mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-04 00:28:33 +00:00
12 lines
253 B
Bash
12 lines
253 B
Bash
#!/bin/bash
|
|
# This is a script used by the devcontainer to build the project
|
|
|
|
# install dependencies
|
|
yarn install
|
|
|
|
# Build Server Dependencies
|
|
yarn affine @affine/server-native build
|
|
|
|
# Create database
|
|
yarn affine @affine/server prisma migrate reset -f
|