https://github.com/zlatanpham/oneones.app
One on One Question Generator
https://github.com/zlatanpham/oneones.app
app meetings nextjs notion-api one-on-ones questions react static-site tailwindcss
Last synced: 3 months ago
JSON representation
One on One Question Generator
- Host: GitHub
- URL: https://github.com/zlatanpham/oneones.app
- Owner: zlatanpham
- Created: 2021-06-13T10:13:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-05T09:25:01.000Z (about 4 years ago)
- Last Synced: 2023-03-02T12:35:42.527Z (over 2 years ago)
- Topics: app, meetings, nextjs, notion-api, one-on-ones, questions, react, static-site, tailwindcss
- Language: TypeScript
- Homepage: https://oneones.app
- Size: 1.62 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# oneones.app
A question generator for one-on-one meetings. The app was built with [NextJS](https://nextjs.org/) and [Notion API](https://developers.notion.com/).
## How to run
As the app sources data from a Notion database, you need to setup one to be able to run the app.
1. Register a Notion API Key by following [the instruction](https://developers.notion.com/docs/getting-started#step-1-create-an-integration).
2. Create a development database by cloning the [template](https://www.notion.so/thanhpham/832c1717bff5410abd1060404fa1dfaf?v=00cf9453a7444f9aa4d46b437206e900).Once the API key and database ID are ready, create `.env.local` at the root of the project and add the following content.
```js
NOTION_API_KEY={{YOUR_API_KEY}}
NOTION_DATABASE_ID={{YOUR_DATABASE_ID}}
```Finally, install dependencies and run development
```bash
yarn
yarn dev
```