We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
本项目是基于remix构建前端页面 + xaza作为后端接口以及数据库支持的待办事项小应用demo(支持增删改查以及Authentication登录登出)
npm run install
npm run dev
Add database
user和resolution
数据结构如下
{"id":"rec_abcdefg","year":2023,"resolution":"hi","isCompleted":false,}
npm install -g @xata.io/cli
xata auth login
Create a new API key in browser
new-resolutions
名称
Create API key
xata init
数据库
Generate TypeScript code
code generation
utils/xata.ts
output file
<None>
xata init命令生成独立的utils/xata.ts文件。这包含xata cli和所有数据模型的类型。如果将来对数据库模式进行了更改,请运行xata codegen命令来生成一个新的xata.ts文件。
xata cli
xata codegen
xata.ts
npm install remix-auth remix-auth-form
SESSION_SECRET
.env
app/utils/session.server.ts
import{createCookieSessionStorage}from"@remix-run/node"constsessionStorage=createCookieSessionStorage({cookie:{name:"_session",sameSite:"lax",path:"/",httpOnly:true,secrets:[process.env.SESSION_SECRET],secure:process.env.NODE_ENV==="production",},})export{sessionStorage}
app/routes/login.tsx
app/routes/resolutions.tsx
构建静态页面
npm run build
启动生产环境
npm start
然后选择一个vps进行前端部署