Skip to content

Commit

Permalink
remove data/.gitkeep as it messes with initial postgres setup, add se…
Browse files Browse the repository at this point in the history
…tup instructions to readme
  • Loading branch information
Mick Vermeulen authored and Mick Vermeulen committed Sep 16, 2020
1 parent aabced3 commit 5e347b0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
data/*
!data/.gitkeep
.env
.DS_Store
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Docker setup for running the Uchu Lego Universe server

## Setup

#### Downloading the source

Clone the repository recursively, so that the Uchu source is also pulled:

```bash
Expand All @@ -20,6 +22,8 @@ git clone https://github.com/MickVermeulen/UchuDocker.git --recursive -b master
git clone [email protected]:MickVermeulen/UchuDocker.git --recursive -b master
```

#### Setting up your environment

Copy the `.env.sample` file to `.env`:

```bash
Expand All @@ -32,6 +36,16 @@ copy .env.sample .env

Set the `GAME_FOLDER` variable in the `.env` file to the absolute path to the `/res` folder in your unpacked `LU` game folder using a text editor of your choice.

#### Setting up data storage

Create a data folder which will store your database files to ensure no loss of data:

```bash
mkdir data
```

This can also be done by creating a new folder named `data` manually, without the terminal.

## Running

```bash
Expand Down
2 changes: 1 addition & 1 deletion Uchu
Submodule Uchu updated from 33fc2f to be3382

0 comments on commit 5e347b0

Please sign in to comment.