Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

本项目是基于remix构建前端页面 + xaza作为后端接口以及数据库支持的待办事项小应用demo(支持增删改查以及Authentication登录登出)

NotificationsYou must be signed in to change notification settings

songhang666/remix-app

Repository files navigation

使用

npm run install
npm run dev

创建数据库

  1. 点击Add database

  1. 创建两张表user和resolution ,定义字段以及把user表和resolution关联上

数据结构如下

{"id":"rec_abcdefg","year":2023,"resolution":"hi","isCompleted":false,}

初始化 Xata

  1. 安装xata.io/clinpm install -g @xata.io/cli
  2. 启动xata auth login
  3. 选择Create a new API key in browser
  4. 输入new-resolutions 作为名称
  5. 点击Create API key
  6. 输入xata init
  7. 选择new-resolutions 作为数据库
  8. 选择Generate TypeScript code 作为code generation
  9. 输入utils/xata.ts 作为xata输出路径output file
  10. 选择<None>

xata init命令生成独立的utils/xata.ts文件。这包含xata cli和所有数据模型的类型。如果将来对数据库模式进行了更改,请运行xata codegen命令来生成一个新的xata.ts文件。

用户注册

  1. 安装npm install remix-auth remix-auth-form
  2. 添加SESSION_SECRET.env 文件
  3. 使用以下内容创建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}

用户登录和登出

  1. 登录在app/routes/login.tsx
  2. 登出在app/routes/resolutions.tsx

部署

构建静态页面

npm run build

启动生产环境

npm start

然后选择一个vps进行前端部署

About

本项目是基于remix构建前端页面 + xaza作为后端接口以及数据库支持的待办事项小应用demo(支持增删改查以及Authentication登录登出)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp