This project uses Firebase for deployment. To deploy your own instance:
- Follow the Firebase Web getting started guide to create a project and install the CLI.
- Run
firebase deploy.
Alternatively, this project can run as a standalone web server. To run this:
- Install Node >=16.
- Build and serve:
cd src
npm install
npm run dev:build
npm run dev:serve
# In a new terminal.
cd ../client
npm install
npm run build # run this every time you change client code.