Skip to content

Installing reflow

Zaprit edited this page Jun 30, 2021 · 2 revisions

Introduction

This page should guide you through the steps required to install Reflow on your computer.

Getting Reflow

Grab a copy of Reflow for your OS, unzip it in the directory of your choosing and proceed to the next section.

Configuration

The directory structure of Reflow should look something like this

reflow-OS-ARCH/
src/
├─ reflow/
│  ├─ public/
│  │  ├─ resources.../
│  ├─ app/
│  │  ├─ html.../
│  ├─ conf/
│  │  ├─ app.conf
│  │  ├─ reflow.conf.sample
├─ github.com/
│  ├─ .../
Reflow
run.sh
run.bat

copy the src/reflow/conf/reflow.conf.sample to src/reflow/conf/reflow.conf and edit that file. It should look like this:

[database]
driver = postgres
hostname = localhost
port = 5432
database = reflow
username = 
password = 

fill in the database configuration with either mysql connection details or postgresql connection details. Now onto running reflow

Running Reflow

To run reflow just ./run.sh if on *Nix or run.bat on Windows.

Starting Reflow on boot

Clone this wiki locally