Skip to content

Commit

Permalink
get rid of references to latest-development. #191
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Dec 3, 2018
1 parent 8f7c6d2 commit 8f436ee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
15 changes: 11 additions & 4 deletions docs/Installation instructions.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
# Installation instructions for Fathom

To install Fathom on your server, start by [downloading an official binary distribution from the releases page](https://github.com/usefathom/fathom/releases) and place it in `/usr/local/bin`.
To install Fathom on your server:

1. [Download the latest Fathom release](https://github.com/usefathom/fathom/releases) suitable for your platform.
2. Extract the archive to `/usr/local/bin`

```sh
wget https://github.com/usefathom/fathom/releases/download/latest-development/fathom-linux-amd64
mv fathom-linux-amd64 /usr/local/bin/fathom
tar -C /usr/local/bin -xzf fathom_$VERSION_$OS_$ARCH.tar.gz
chmod +x /usr/local/bin/fathom
```

Confirm that Fathom is installed properly by running `fathom --version`

```sh
$ fathom --version
Fathom version 1.0.0
```

## Starting the Fathom web server
## Configuring Fathom

> This step is optional. By default, Fathom will use a SQLite database file in the current working directory.
To run the Fathom web server we will need to [configure Fathom](Configuration.md) so that it can connect with your database of choice.

Expand Down Expand Up @@ -42,6 +47,8 @@ Check out the [configuration file documentation](Configuration.md) for all possi

## Register your admin user

> This step is optional. If you don't register any users, your Fathom dashboard will be public.
To register a user in the Fathom instance we just created, run the following command from the directory where your `.env` file is.

```
Expand Down
5 changes: 2 additions & 3 deletions docs/Updating to the latest version.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ To update your existing Fathom installation to the latest version, first rename
mv /usr/local/bin/fathom /usr/local/bin/fathom-old
```

Then, [download the latest release suitable for your system architecture from the releases page](https://github.com/usefathom/fathom/releases) and place it in `/usr/local/bin`.
Then, [download the latest release archive suitable for your system architecture from the releases page](https://github.com/usefathom/fathom/releases/latest) and place it in `/usr/local/bin`.

```
wget https://github.com/usefathom/fathom/releases/download/latest-development/fathom-linux-amd64
mv fathom-linux-amd64 /usr/local/bin/fathom
tar -C /usr/local/bin -xzf fathom_$VERSION_$OS_$ARCH.tar.gz
chmod +x /usr/local/bin/fathom
```

Expand Down

0 comments on commit 8f436ee

Please sign in to comment.