Bootstrapped with create-next-app@13.4.6.
/_docs
Warning
コーディング規約の環境変数には特に注意すること。
PR を行う際は、体裁を統一するため、Create pull requestを押した後、URLに?template=task-feature.md (もしくは&template=task-feature.md) を追加して、テンプレートにアクセスする。
コピー用
template=task-feature.md
Note
通常の PR とテンプレート付き PR の例
feature/main-app-ui→develop
- PR の
URLhttps://github.com/wiyco/imap/compare/develop...feature/main-app-ui
- テンプレート付き PR の
URLhttps://github.com/wiyco/imap/compare/develop...feature/main-app-ui?template=task-feature.mdor
https://github.com/wiyco/imap/compare/develop...feature/main-app-ui?expand=1&template=task-feature.md詳細はGitHub Docsを参照。
Install environment packages.
npm iThe below file and variables must be created in the root directory.
# supabase
NEXT_PUBLIC_SUPABASE_URL=https://yourprojecturl.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=YourApiKey
# postgres
DATABASE_URL=postgresql://postgres:[pw]@db.[url].supabase.co:5432/postgres?schema=public
DIRECT_URL=postgresql://postgres:[pw]@db.[url].supabase.co:5432/postgres?pgbouncer=trueYou have to run npm run format before PR.
Support iOS 15.4 or later.
module.exports = {
theme: {
extend: {
height: {
screen: ["100vh", "100dvh"],
},
minHeight: {
screen: ["100vh", "100dvh"],
},
maxHeight: {
screen: ["100vh", "100dvh"],
},
},
},
};🐧