A social network for people who believe studying together can be way more fun
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
To run integration tests simply run:
npm run test:int:watchWe use the @testcontainers package to raise Postgres and Redis containers (this require docker to be running)
To run e2e tests first create an .env.test file(with the same shape as .env.example). You must configure the database and redis connections.
Then run
npm run e2e