Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.12 KB

README.md

File metadata and controls

60 lines (37 loc) · 1.12 KB

Standup Front

This is a standup meeting application.

We use:

  • Next.js
  • Relay
  • Material UI

This is a Next.js project bootstrapped with create-next-app.

Getting Started

To get started you should have yarn installed and follow the instructions:

  1. This app uses an API that can be configured here standup-api

  2. Install dependencies:

yarn
  1. Create a .env file and fill with variables that are listed in the .env.sample file
cp .env.sample .env
  1. 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.

Useful commands

  1. Build js and types
yarn build
  1. Generate the relay files (including types). You should execute this every time that you do a relay query or fragment change.
yarn relay
  1. Lint code
yarn lint