Character creator web application for the game Caves of Qud. This project is not affiliated with or endorsed by the creators of Caves of Qud. Go look at Caves of Qud here: http://www.cavesofqud.com/
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.
17 lines
323 B
17 lines
323 B
## |
|
# Qud Creator |
|
# |
|
# @file |
|
# @version 0.1 |
|
|
|
all: backend frontend |
|
docker: frontend |
|
docker build -t qud-creator . |
|
backend: |
|
cd qud-creator-backend && cargo build --release |
|
frontend: |
|
cd qud-creator-frontend && yarn build |
|
rm -rf qud-creator-backend/static |
|
cp -r qud-creator-frontend/build qud-creator-backend/static |
|
|
|
# end
|
|
|