This section will be updated in the future with deployment implementation. This is purely made to function for now.
Start off by installing all packages required to run the development server.
Start by running the SurrealDB server on the expected port:
npm run dev-run-surreal
# or
yarn dev-run-surreal
# or
pnpm dev-run-surreal
Then, in a separate shell, migrate the database:
npm run dev-migrate
# or
yarn dev-migrate
# or
pnpm dev-migrate
You can now stop the SurrealDB server, as it will run concurrently with the NextJS server.
You can now run the development server using:
npm run dev
# or
yarn dev
# or
pnpm dev