-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove data/.gitkeep as it messes with initial postgres setup, add se…
…tup instructions to readme
- Loading branch information
Mick Vermeulen
authored and
Mick Vermeulen
committed
Sep 16, 2020
1 parent
aabced3
commit 5e347b0
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
data/* | ||
!data/.gitkeep | ||
.env | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
Submodule Uchu
updated
from 33fc2f to be3382