nest m.u.d – getting started
a m.u.d (multi user dungeon) with a back end api built with nestjs and a front end ui built with flutter.
server
�� look at what these scripts actually do before running them!
setup
attempts to install nvm
, node
, yarn
, nestjs
and package.json
defined dependencies.
cd server
./script/setup
start server
starts a postgres
database in a docker
container, runs database migrations with db-migrate
, loads game data and starts the nestsjs
api server.
cd server
./script/start
start client
cd client
./script/start
todo
- client – create character
- client – move character
- decide final scope of this proof of concept
special note
as i would much prefer to build the backend in go
, i am only going to build limited funtionality into this version as a proof of concept and a means of learning something about nestjs
and typescript
.
Comments are closed.