Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 모던자바스크립트
- React
- 코드카타
- 내일배움캠프
- deep dive
- nextjs
- Next
- 스파르타코딩클럽
- js
- 리터럴
- 초기셋팅
- domain
- useRouter
- git
- 셋팅
- CORS
- 프로젝트 셋팅
- 코테
- 티스토리챌린지
- 모던 자바스크립트
- error
- vercel
- 구글 로그인
- 자주 까먹는
- 코딩테스트
- vscode
- 소셜 로그인
- 오블완
- array정적메서드
- 프로그래머스
- Today
- Total
파피루스
[supabase] type 자동 추론하기 본문
1. supabase 설치
npm i supabase@">=1.8.1" --save-dev
2. supabase 셋팅하기
npx supabase login
npx supabase init
3. supabase DB기준으로 타입 파일 생성하기
npx supabase gen types --lang=typescript --project-id "프로젝트 아이디" --schema public > database.types.ts
아이디 넣어서 실행하면 root 폴더 위치에 database.type.ts 파일을 생성한다.
나는 next 에서 사용할거라 src/database.type.ts 로 바꿔서 사용한다.
4. 어떻게 쓰는가?
import { Database, Tables, Enums } from "./database.types.ts";
let movie: Tables<'movies'>
'Today I Learned > in dev' 카테고리의 다른 글
console warning 잡기 (0) | 2024.08.04 |
---|---|
PostMan, supabase.auth.user 셋팅하기 (0) | 2024.08.03 |
[팀플] 다시는 error/warning 메세지를 무시하지 말아라 (1) | 2024.07.14 |
[supabase] 여러 개 테이블 select하기 (table join) (1) | 2024.07.10 |
NextRouter was not mounted. https://nextjs.org/docs/messages/next-router-not-mounted (0) | 2024.07.08 |