Add stack for building uniswap frontend app

This commit is contained in:
2023-11-29 19:05:32 +05:30
parent fc2a1445ea
commit e935cf011c
7 changed files with 64 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -e
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
set -x
fi
yarn build
# Create symlink to host built files with correct URL path
mkdir ./urbit/apps
ln -s ./build/ ./urbit/apps/uniswap
yarn serve build -s -l 3000