mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-24 19:59:12 +00:00
14 lines
No EOL
101 B
Bash
Executable file
14 lines
No EOL
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
docker-compose up -d
|
|
|
|
pushd Server
|
|
npm i
|
|
npm run dev
|
|
|
|
popd
|
|
|
|
pushd UI
|
|
npm i
|
|
npm start
|
|
popd |