-
-
Notifications
You must be signed in to change notification settings - Fork 1
Installing reflow
Zaprit edited this page Jun 30, 2021
·
2 revisions
This page should guide you through the steps required to install Reflow on your computer.
Grab a copy of Reflow for your OS, unzip it in the directory of your choosing and proceed to the next section.
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
To run reflow just ./run.sh
if on *Nix or run.bat
on Windows.