You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
262 B
9 lines
262 B
#!/bin/bash
|
|
|
|
# Build frontend
|
|
rm -r frontend/dist 2>/dev/null
|
|
mkdir frontend/dist
|
|
deno run -A https://deno.land/x/aleph@v0.3.0-alpha.32/cli.ts build frontend --reload
|
|
|
|
# Run backend
|
|
deno run --unstable --allow-net --allow-read --allow-write --allow-run index.ts
|
|
|