Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 902 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 902 Bytes

TWIG Client

Web Client for twigslot.com

Development Setup

git clone http://github.com/twigslot/twig-client
cd twig-client
yarn install
yarn dev

then visit http://localhost:5173 (unless changed via --port) to see the web app

See server setup

Building (for Development)

Note This build is not meant to be production ready. See this for deployment.

cd twig-client
yarn build
serve -d dist -p 5173

Port 5173 is used because twig-server sets CORS policy to only accept http://localhost:5173 and http://127.0.0.1:5173

Building (for Production)

docker build . -t tch1001/twig_client:v1.5
docker push tch1001/twig_client:v1.5

See twig-server for continuation.