This is a standup meeting application.
We use:
- Next.js
- Relay
- Material UI
This is a Next.js project bootstrapped with create-next-app
.
To get started you should have yarn
installed and follow the instructions:
-
This app uses an API that can be configured here standup-api
-
Install dependencies:
yarn
- Create a
.env
file and fill with variables that are listed in the.env.sample
file
cp .env.sample .env
- Then run the development server:
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx
. The page auto-updates as you edit the file.
- Build js and types
yarn build
- Generate the relay files (including types). You should execute this every time that you do a relay query or fragment change.
yarn relay
- Lint code
yarn lint