安装


Linux or Mac

1. 安装 docker

Open https://www.docker.com/ , download docker and install it.

2. 安装 git

Open https://git-scm.com/downloads, download git and install it.

3. 下载项目

git clone https://github.com/tonera/fluxsd.git
cd fluxsd

或者,你可以从 https://github.com/tonera/fluxsd/releases 直接下载安装包,解压缩后将目录名改为fluxsd

wget https://github.com/tonera/fluxsd/archive/refs/tags/{version}.zip
unzip {version}.zip
mv fluxsd-{version} fluxsd
cd fluxsd

4. 编辑配置文件 .env

APP_HOST={Your ip}
APP_LOCALE = zh

5. 启动

docker-compose up

6. 使用

打开 : http://{Your ip}:8000 开始使用

如果你无法打开网页,请查看是否防火墙阻止了访问。请打开8000,8080和6379端口对入站访问。

Windows

1. 安装 docker

打开 https://www.docker.com/ , 下载docker并安装.

2. 安装 git

打开 https://git-scm.com/downloads, 下载git并安装.

3. 下载项目

从仓库克隆

git clone https://github.com/tonera/fluxsd.git
cd fluxsd

或者直接从 https://github.com/tonera/fluxsd/releases 下载源码安装包Source code ,解压缩后将目录改名为fluxsd

cd fluxsd

4. 编辑配置文件 .env

APP_HOST={你的本地计算机ip}

示例

APP_HOST=192.168.31.127
APP_LOCALE = zh

5. 启动

打开一个PowerShell窗口进入fluxsd目录

cd fluxsd
docker-compose.exe up

示例

PS D:\website\fluxsd>docker-compose.exe up

6. 使用

打开: http://{你的本地计算机ip}:8000

如果你无法打开网页,请查看是否防火墙阻止了访问。请打开8000,8080和6379端口对入站访问。