For anyone want to deploy this at home server... #112
Replies: 1 comment 1 reply
-
If I don't want to deploy this project using Docker or Vercel, I use the #518 Saammaa method for deployment.
This file is the picture that comes with the project, such as the icon of the website or the VLC icon in the video playback interface. 如果我不想使用Docker或者Vercel来进行部署这个项目,所以我使用了#518 Saammaa的方法进行部署。 这个文件是项目里自带的图片,例如网站的图标或者视频播放界面里VLC的图标。 |
Beta Was this translation helpful? Give feedback.
-
check here for Dockerfile for this project: https://gist.github.com/aidenlx/882dae41f2dd8522c89c714df8fc113a
change configs in
config
folder and then put the file in the root dir of this project, then usedocker build -t onedrive-index .
to build image.When the image is built, it is possible to use the following to run
onedrive-vercel-index
docker run -p 3000:3000 --restart always -e REFRESH_TOKEN=... -e CLIENT_SECRET=... -e ACCESS_TOKEN=... onedrive-index
docker-compose.yml
file and then rundocker-compose up -d
Beta Was this translation helpful? Give feedback.
All reactions