是否可以使用服务器搭建 #518
-
我想部署到自己的服务器上,另外这个可以用PHP实现搭建吗 |
Beta Was this translation helpful? Give feedback.
Replies: 11 comments 113 replies
-
可以在自己服务器上用 Docker,以及需要自己启动一个 Redis 实例。 不能使用 PHP,本项目跟 PHP 没有任何关系。 |
Beta Was this translation helpful? Give feedback.
-
可以完全本地化服务器部署,和 Vercel 一样简单。 服务器需要安装:
将配置好两个js文件的你的fork git clone 到自己的服务器上,然后在代码文件夹根目录新建 在env里面简单定义 对于本地Redis Server,值应为 redis://127.0.0.1:6379。 在代码根目录执行:
然后访问端口 |
Beta Was this translation helpful? Give feedback.
-
楼主请问你实现了吗,我也想通过自己服务器搭建,总是报错 |
Beta Was this translation helpful? Give feedback.
-
@tanmantang 老哥你是怎么解决这个问题的,我遇到跟你一模一样的问题了。 pnpm install dependencies:
devDependencies:
ERR_PNPM_PEER_DEP_ISSUES Unmet peer dependencies .
info - Loaded env from /root/onedrive-vercel-index/.env ✔ No ESLint warnings or errors
info - Loaded env from /root/onedrive-vercel-index/.env ./utils/getFileIcon.ts:1:43
ready - started server on 0.0.0.0:3000, url: http://localhost:3000 |
Beta Was this translation helpful? Give feedback.
-
对于如何规避一些简单错误,成功部署该项目,写了个教程。参见: |
Beta Was this translation helpful? Give feedback.
-
会用或者能用 Docker 的话应该可以参考一下 #643 甚至或许可以增加动态加载 config 的机制而不是把 config 打进 bundle,那样改配置也方便了,亦方可允许直接提供一个 generic 的 Docker image |
Beta Was this translation helpful? Give feedback.
-
谢谢回复,看起来目前只能考虑折腾docker的方法了。
…---原始邮件---
发件人: ***@***.***>
发送时间: 2022年5月22日(周日) 晚上6:38
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [spencerwooo/onedrive-vercel-index] 是否可以使用服务器搭建 (Discussion #518)
我现在占位文件也没有用了……刷新网站就会被重新覆盖,并且不定时莫名其妙就消失了,然后就崩溃
目前折騰好了嗎?有點好奇。
没有折腾好。
目前的一个可能的解决方法是,设置一个定时指令,每五分钟执行一次“pnpm start”
但是由于这个问题复发的随机性,这个方法也是治标不治本。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
@Saammaa 感谢大佬的教程!我按照你的方法部署到了服务器上,redis是用docker部署到本地的,这个列表程序也能正常启动了,但就是有一个问题:使用pnpm start命令运行程序,一旦我关闭了ssh,程序就会直接停止,而且下一次重启的时候还要重新配置refresh token。请问有什么办法能将其打包成应用包持续在后台运行吗?一直开着ssh不太理想~ |
Beta Was this translation helpful? Give feedback.
-
大佬,请问这个部署在服务器上的话,下载文件会走服务器流量吗 |
Beta Was this translation helpful? Give feedback.
-
Flash-Z ***@***.***>于2023年5月2日 周二15:28写道:
大佬,请问这个部署在服务器上的话,下载文件会走服务器流量吗
—
Reply to this email directly, view it on GitHub
<#518 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ASM4GTCJH5X2WBZ3XXBZMK3XECZSRANCNFSM5P4KSYSA>
.
You are receiving this because you were mentioned.Message ID:
<spencerwooo/onedrive-vercel-index/repo-discussions/518/comments/5777760@
github.com>
你好,
可以通过观察所下载文件的直链,其实际上属于 sharepoint 域,所以不消耗服务器流量。
|
Beta Was this translation helpful? Give feedback.
可以在自己服务器上用 Docker,以及需要自己启动一个 Redis 实例。
不能使用 PHP,本项目跟 PHP 没有任何关系。