To reproduce...
- upgrade to the RC:
yarn rw upgrade -t rc
6.4.0-rc.45+cd3494993
- set up Docker:
yarn rw exp setup-docker
- set up the server file:
yarn rw exp setup-server-file
-
diff the generated server file with the one here; there's a few changes you'll have to make (in particular, the host)
-
add the
@redwoodjs/realtime
package:
# make sure the version is the same as all the other `@redwoodjs` packages:
yarn workspace api add @redwoodjs/[email protected]
- update the
Dockerfile
to use the server file:
- CMD [ "node_modules/.bin/rw-server", "api", "--load-env-files" ]
+ CMD [ "node", "./api/dist/server.js" ]
- if you're deploying to Fly, use their CLI. just say yes to everything (but you can say no to the Postgresql and Upstash redis databases if you don't want them):
flyctl launch
-
after you get a fly.toml, carefully look at the diff in this commit: https://github.com/jtoar/docker-server-file-example/commit/07810611e270f2c1136a5e17bce1763d8f87c487. particularly, the changes to migrate.sh and start.sh, they include the full paths to the app (
/home/node/app/...
) -
proof this works: https://small-pine-440.fly.dev/ (the machine is most likely suspended to save resources, but i assure you i deployed it!)