Installation


Linux or Mac

1. Install docker

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

2. Install git

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

3. Clone the repo

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

Or , you can download the fluxsd package in the page: https://github.com/tonera/fluxsd/releases . and then , unzip it and rename to fluxsd.

wget https://github.com/tonera/fluxsd/releases/download/{version}/fluxsd.zip
unzip {version}.zip
mv fluxsd-{version} fluxsd
cd fluxsd

4. Edit config file .env

APP_HOST={Your ip}

5. Startup

docker-compose up

6. Usage

Open and access : http://{Your ip}:8000

If you cannot open the web page, please check if the firewall is blocking access. Please allow inbound access to ports 8000, 8080 and 6379.

Windows

1. Install docker

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

2. Install git

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

3. Clone the repo or Download fluxsd.zip

Clone the repo

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

Or , you can download the fluxsd package. Click and download fluxsd.zip , and then, unzip it and rename to fluxsd.

cd fluxsd

4. Edit config file .env

Check you local ip and edit .env

APP_HOST={Your ip}

Example

APP_HOST=192.168.31.127

5. Startup

Open a PowerShell window and go to the project directory.

cd fluxsd
docker-compose.exe up

Example

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

6. Usage

Open and access : http://{Your ip}:8000

If you cannot open the web page, please check if the firewall is blocking access. Please allow inbound access to ports 8000, 8080 and 6379.