umijs / umi-blog-example

An example of blog website built with Umi.js and new API route feature in Umi 4.
https://umijs.org/docs/tutorials/blog
38 stars 33 forks source link

新版本加入了REDIS,如何在这项目设置,还有JWT_SECRET #4

Closed dong-lufei closed 2 years ago

dong-lufei commented 2 years ago

\api\posts[postId].js:53190
throw new Error("Unable to find environment variable: UPSTASH_REDIS_REST_URL");

yuaanlin commented 2 years ago

UPSTASH_REDIS_REST_URLJWT_SECRET 是环境变量,可以参考文档的 环境变量 来查看如何设置。

UPSTASH_REDIS_REST_URL 是因为博客用 Upstash 提供的 Redis 数据库作为缓存服务,来降低用户打开博客所需要的加载时间。

JWT_SECRET 则是用户登入博客时需要用来签发 token 的密钥。

yuaanlin commented 2 years ago

JWT_SECRET 可以是任何值,你也可以用 密码产生器 生成一个高强度密钥作为 JWT_SECRET

MRSHIMMER commented 2 years ago

JWT_SECRET 可以是任何值,你也可以用 密码产生器 生成一个高强度密钥作为 JWT_SECRET

好的,非常感谢。