Skip to content

Commit

Permalink
split postgres and redis data store, cleaned up readme, add log level…
Browse files Browse the repository at this point in the history
… env variable
  • Loading branch information
Mick Vermeulen authored and Mick Vermeulen committed Oct 13, 2020
1 parent 0de6006 commit 0ae30d5
Show file tree
Hide file tree
Showing 1,366 changed files with 925 additions and 22 deletions.
12 changes: 8 additions & 4 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# Only this variable has to be changed
GAME_FOLDER=/res
DATA_FOLDER=./data
GAME_FOLDER=/path/to/LU/res

# Optional Uchu Docker configuration, can be left unchanged
REDIS_DATA_FOLDER=./redis-data
POSTGRES_DATA_FOLDER=./pg-data
CERTIFICATE=./cert.pfx
HOSTNAME=localhost
LOG_LEVEL=Information

# Postgres specific setup, no modifications needed by default
# Postgres specific setup, can be left unchanged
POSTGRES_USER=uchu
POSTGRES_PASSWORD=uchu
POSTGRES_DB=uchu

# Exposed Uchu specific setup, no modifications needed by default
# Docker networking setup, can be left unchanged
DATABASE_PORT=5432
REDIS_PORT=6379
ADMINER_PORT=8080
Expand Down
24 changes: 10 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Docker setup for running the Uchu Lego Universe server
- Docker
- Docker Compose (a version that supports at least docker-compose v3.3 files)
- [LU unpacked client](https://docs.google.com/document/d/1XmHXWuUQqzUIOcv6SVVjaNBm4bFg9lnW4Pk1pllimEg/edit) with [LCDRs TcpUdp mod](https://github.com/lcdr/raknet_shim_dll/releases/tag/2020-09-03)
- Bash or PowerShell

## Setup

Expand All @@ -15,10 +16,6 @@ Docker setup for running the Uchu Lego Universe server
Clone the repository recursively, so that the Uchu source is also pulled:

```bash
# If you prefer to use HTTPS (default)
git clone https://github.com/MickVermeulen/UchuDocker.git --recursive -b master

# If you prefer to use SSH
git clone [email protected]:MickVermeulen/UchuDocker.git --recursive -b master
```

Expand All @@ -27,11 +24,8 @@ git clone [email protected]:MickVermeulen/UchuDocker.git --recursive -b master
Copy the `.env.sample` file to `.env`:

```bash
# On Linux, MacOS and Powershell
# Use Bash or Powershell
cp .env.sample .env

# On Windows CMD
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.
Expand All @@ -41,14 +35,14 @@ Set the `GAME_FOLDER` variable in the `.env` file to the absolute path to the `/
Create a data folder which will store your database files to ensure no loss of data:

```bash
mkdir data
mkdir pg-data
mkdir redis-data
```

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

## Running

```bash
docker-compose build
docker-compose up -d
```

Expand All @@ -58,7 +52,7 @@ This runs Uchu in the background along with Postgres and Redis. You can attach t
docker attach uchudocker_uchu_1
```

This allows you to input shell commands like `/adduser <username>`. You can exit the shell using `Ctrl+P + Ctrl+Q` (`Ctrl+C` closes the container, not just your attach session).
This allows you to input shell commands like `/adduser <username>`. You can exit the shell using `Ctrl+P + Ctrl+Q` (`Ctrl+C` closes the container, not just your session).

## Closing

Expand All @@ -68,12 +62,14 @@ docker-compose down

## Applying changes to .env

When applying any changes to the `.env` file after your initial `docker-compose up -d`, the changes aren't built into the container. First run `docker-compose build --no-cache` to apply your `.env` file changes after which `docker-compose up -d` can be used again to start up Uchu. Note that this is not required if you only changed the LU resource location before running your first `docker-compose up -d`, but is required for any subsequent changes.
When applying any changes to the `.env` file after your initial `docker-compose up -d`, the changes aren't built into the container. Run `docker-compose build --no-cache` to apply your `.env` file changes after which `docker-compose up -d` can be to start up Uchu.

## Adminer

Uchu Docker can also run [Adminer](https://www.adminer.org), which allows you to easily modify the Uchu database in a user friendly way. You can activate this by uncommenting the lines after `# Uncomment this if you wish to use adminer` in `docker-compose.yaml`, note that you probably don't need this by default but can assist with more user friendly database management. Select the `PostgreSQL` database type, set the server to `db` and enter the credentials found in the `.env` file to login. More info on how to use Adminer can be found on their website.

## Hosting (Advanced)

This Docker setup can be used to host Uchu as long as all ports are exposed (see the .env.sample file for all ports that need to be exposed). Do note that hosting Uchu on anything other than `localhost` requires a valid PFX certificate from a trusted CA like Let's Encrypt and therefore also a valid domain name. You *cannot* use a self signed certificate even if you first generate your own root certificate, as the TcpUdp mod does not look at the OS certificate store for valid root certificates. You can add a certificate to the container by adding it to this directory under the name `cert.pfx`. Finally set the `HOSTNAME` variable in the `.env` file to the hostname for the certificate.
This Docker setup can be used to host Uchu as long as all ports are exposed (see the .env.sample file for all ports that need to be exposed). Use your firewall to port forward these ports and incoming connections should be forwarded to Uchu. Do note that hosting Uchu on anything other than `localhost` requires a valid PFX certificate from a trusted CA like Let's Encrypt and therefore also a valid domain name.

You *cannot* use a self signed certificate even if you first generate your own root certificate: the TcpUdp mod does not look at the OS certificate store for valid root certificates. You can add a certificate to the container by adding it to this directory under the name `cert.pfx`. Finally set the `HOSTNAME` variable in the `.env` file to the domain name for your certificate.
2 changes: 1 addition & 1 deletion Uchu
Submodule Uchu updated from 56ef54 to ff620c
2 changes: 1 addition & 1 deletion config.default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Password>$POSTGRES_PASSWORD</Password>
</Database>
<ConsoleLogging>
<Level>Debug</Level>
<Level>$LOG_LEVEL</Level>
<Timestamp>false</Timestamp>
</ConsoleLogging>
<FileLogging>
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
- .env
restart: always
volumes:
- ${DATA_FOLDER}:/var/lib/postgresql/data
- ${POSTGRES_DATA_FOLDER}:/var/lib/postgresql/data
expose:
- 5432
# Uncomment this if you wish to use adminer
Expand All @@ -27,7 +27,7 @@ services:
privileged: true
command: sh -c "./redis.sh"
volumes:
- ${DATA_FOLDER}:/data:rw
- ${REDIS_DATA_FOLDER}:/data:rw
expose:
- 6379
restart: always
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions pg-data/PG_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12
Binary file added pg-data/base/1/112
Binary file not shown.
Binary file added pg-data/base/1/113
Binary file not shown.
Binary file added pg-data/base/1/1247
Binary file not shown.
Binary file added pg-data/base/1/1247_fsm
Binary file not shown.
Binary file added pg-data/base/1/1247_vm
Binary file not shown.
Binary file added pg-data/base/1/1249
Binary file not shown.
Binary file added pg-data/base/1/1249_fsm
Binary file not shown.
Binary file added pg-data/base/1/1249_vm
Binary file not shown.
Binary file added pg-data/base/1/1255
Binary file not shown.
Binary file added pg-data/base/1/1255_fsm
Binary file not shown.
Binary file added pg-data/base/1/1255_vm
Binary file not shown.
Binary file added pg-data/base/1/1259
Binary file not shown.
Binary file added pg-data/base/1/1259_fsm
Binary file not shown.
Binary file added pg-data/base/1/1259_vm
Binary file not shown.
Binary file added pg-data/base/1/13258
Binary file not shown.
Binary file added pg-data/base/1/13258_fsm
Binary file not shown.
Binary file added pg-data/base/1/13258_vm
Binary file not shown.
Empty file added pg-data/base/1/13260
Empty file.
Binary file added pg-data/base/1/13262
Binary file not shown.
Binary file added pg-data/base/1/13263
Binary file not shown.
Binary file added pg-data/base/1/13263_fsm
Binary file not shown.
Binary file added pg-data/base/1/13263_vm
Binary file not shown.
Empty file added pg-data/base/1/13265
Empty file.
Binary file added pg-data/base/1/13267
Binary file not shown.
Binary file added pg-data/base/1/13268
Binary file not shown.
Binary file added pg-data/base/1/13268_fsm
Binary file not shown.
Binary file added pg-data/base/1/13268_vm
Binary file not shown.
Empty file added pg-data/base/1/13270
Empty file.
Binary file added pg-data/base/1/13272
Binary file not shown.
Binary file added pg-data/base/1/13273
Binary file not shown.
Binary file added pg-data/base/1/13273_fsm
Binary file not shown.
Binary file added pg-data/base/1/13273_vm
Binary file not shown.
Empty file added pg-data/base/1/13275
Empty file.
Binary file added pg-data/base/1/13277
Binary file not shown.
Binary file added pg-data/base/1/13278
Binary file not shown.
Binary file added pg-data/base/1/13278_fsm
Binary file not shown.
Binary file added pg-data/base/1/13278_vm
Binary file not shown.
Empty file added pg-data/base/1/13280
Empty file.
Binary file added pg-data/base/1/13282
Binary file not shown.
Binary file added pg-data/base/1/13283
Binary file not shown.
Binary file added pg-data/base/1/13283_fsm
Binary file not shown.
Binary file added pg-data/base/1/13283_vm
Binary file not shown.
Empty file added pg-data/base/1/13285
Empty file.
Binary file added pg-data/base/1/13287
Binary file not shown.
Empty file added pg-data/base/1/13288
Empty file.
Empty file added pg-data/base/1/13290
Empty file.
Binary file added pg-data/base/1/13292
Binary file not shown.
Empty file added pg-data/base/1/1417
Empty file.
Empty file added pg-data/base/1/1418
Empty file.
Binary file added pg-data/base/1/174
Binary file not shown.
Binary file added pg-data/base/1/175
Binary file not shown.
Binary file added pg-data/base/1/2187
Binary file not shown.
Empty file added pg-data/base/1/2224
Empty file.
Empty file added pg-data/base/1/2328
Empty file.
Empty file added pg-data/base/1/2336
Empty file.
Binary file added pg-data/base/1/2337
Binary file not shown.
Binary file added pg-data/base/1/2579
Binary file not shown.
Binary file added pg-data/base/1/2600
Binary file not shown.
Binary file added pg-data/base/1/2600_fsm
Binary file not shown.
Binary file added pg-data/base/1/2600_vm
Binary file not shown.
Binary file added pg-data/base/1/2601
Binary file not shown.
Binary file added pg-data/base/1/2601_fsm
Binary file not shown.
Binary file added pg-data/base/1/2601_vm
Binary file not shown.
Binary file added pg-data/base/1/2602
Binary file not shown.
Binary file added pg-data/base/1/2602_fsm
Binary file not shown.
Binary file added pg-data/base/1/2602_vm
Binary file not shown.
Binary file added pg-data/base/1/2603
Binary file not shown.
Binary file added pg-data/base/1/2603_fsm
Binary file not shown.
Binary file added pg-data/base/1/2603_vm
Binary file not shown.
Empty file added pg-data/base/1/2604
Empty file.
Binary file added pg-data/base/1/2605
Binary file not shown.
Binary file added pg-data/base/1/2605_fsm
Binary file not shown.
Binary file added pg-data/base/1/2605_vm
Binary file not shown.
Binary file added pg-data/base/1/2606
Binary file not shown.
Binary file added pg-data/base/1/2606_fsm
Binary file not shown.
Binary file added pg-data/base/1/2606_vm
Binary file not shown.
Binary file added pg-data/base/1/2607
Binary file not shown.
Binary file added pg-data/base/1/2607_fsm
Binary file not shown.
Binary file added pg-data/base/1/2607_vm
Binary file not shown.
Binary file added pg-data/base/1/2608
Binary file not shown.
Binary file added pg-data/base/1/2608_fsm
Binary file not shown.
Binary file added pg-data/base/1/2608_vm
Binary file not shown.
Binary file added pg-data/base/1/2609
Binary file not shown.
Binary file added pg-data/base/1/2609_fsm
Binary file not shown.
Binary file added pg-data/base/1/2609_vm
Binary file not shown.
Binary file added pg-data/base/1/2610
Binary file not shown.
Binary file added pg-data/base/1/2610_fsm
Binary file not shown.
Binary file added pg-data/base/1/2610_vm
Binary file not shown.
Empty file added pg-data/base/1/2611
Empty file.
Binary file added pg-data/base/1/2612
Binary file not shown.
Binary file added pg-data/base/1/2612_fsm
Binary file not shown.
Binary file added pg-data/base/1/2612_vm
Binary file not shown.
Empty file added pg-data/base/1/2613
Empty file.
Binary file added pg-data/base/1/2615
Binary file not shown.
Binary file added pg-data/base/1/2615_fsm
Binary file not shown.
Binary file added pg-data/base/1/2615_vm
Binary file not shown.
Binary file added pg-data/base/1/2616
Binary file not shown.
Binary file added pg-data/base/1/2616_fsm
Binary file not shown.
Binary file added pg-data/base/1/2616_vm
Binary file not shown.
Binary file added pg-data/base/1/2617
Binary file not shown.
Binary file added pg-data/base/1/2617_fsm
Binary file not shown.
Binary file added pg-data/base/1/2617_vm
Binary file not shown.
Binary file added pg-data/base/1/2618
Binary file not shown.
Binary file added pg-data/base/1/2618_fsm
Binary file not shown.
Binary file added pg-data/base/1/2618_vm
Binary file not shown.
Binary file added pg-data/base/1/2619
Binary file not shown.
Binary file added pg-data/base/1/2619_fsm
Binary file not shown.
Binary file added pg-data/base/1/2619_vm
Binary file not shown.
Empty file added pg-data/base/1/2620
Empty file.
Binary file added pg-data/base/1/2650
Binary file not shown.
Binary file added pg-data/base/1/2651
Binary file not shown.
Binary file added pg-data/base/1/2652
Binary file not shown.
Binary file added pg-data/base/1/2653
Binary file not shown.
Binary file added pg-data/base/1/2654
Binary file not shown.
Binary file added pg-data/base/1/2655
Binary file not shown.
Binary file added pg-data/base/1/2656
Binary file not shown.
Binary file added pg-data/base/1/2657
Binary file not shown.
Binary file added pg-data/base/1/2658
Binary file not shown.
Binary file added pg-data/base/1/2659
Binary file not shown.
Binary file added pg-data/base/1/2660
Binary file not shown.
Binary file added pg-data/base/1/2661
Binary file not shown.
Binary file added pg-data/base/1/2662
Binary file not shown.
Binary file added pg-data/base/1/2663
Binary file not shown.
Binary file added pg-data/base/1/2664
Binary file not shown.
Binary file added pg-data/base/1/2665
Binary file not shown.
Binary file added pg-data/base/1/2666
Binary file not shown.
Binary file added pg-data/base/1/2667
Binary file not shown.
Binary file added pg-data/base/1/2668
Binary file not shown.
Binary file added pg-data/base/1/2669
Binary file not shown.
Binary file added pg-data/base/1/2670
Binary file not shown.
Binary file added pg-data/base/1/2673
Binary file not shown.
Binary file added pg-data/base/1/2674
Binary file not shown.
Binary file added pg-data/base/1/2675
Binary file not shown.
Binary file added pg-data/base/1/2678
Binary file not shown.
Binary file added pg-data/base/1/2679
Binary file not shown.
Binary file added pg-data/base/1/2680
Binary file not shown.
Binary file added pg-data/base/1/2681
Binary file not shown.
Binary file added pg-data/base/1/2682
Binary file not shown.
Binary file added pg-data/base/1/2683
Binary file not shown.
Binary file added pg-data/base/1/2684
Binary file not shown.
Binary file added pg-data/base/1/2685
Binary file not shown.
Binary file added pg-data/base/1/2686
Binary file not shown.
Binary file added pg-data/base/1/2687
Binary file not shown.
Binary file added pg-data/base/1/2688
Binary file not shown.
Binary file added pg-data/base/1/2689
Binary file not shown.
Binary file added pg-data/base/1/2690
Binary file not shown.
Binary file added pg-data/base/1/2691
Binary file not shown.
Binary file added pg-data/base/1/2692
Binary file not shown.
Binary file added pg-data/base/1/2693
Binary file not shown.
Binary file added pg-data/base/1/2696
Binary file not shown.
Binary file added pg-data/base/1/2699
Binary file not shown.
Binary file added pg-data/base/1/2701
Binary file not shown.
Binary file added pg-data/base/1/2702
Binary file not shown.
Binary file added pg-data/base/1/2703
Binary file not shown.
Binary file added pg-data/base/1/2704
Binary file not shown.
Binary file added pg-data/base/1/2753
Binary file not shown.
Binary file added pg-data/base/1/2753_fsm
Binary file not shown.
Binary file added pg-data/base/1/2753_vm
Binary file not shown.
Binary file added pg-data/base/1/2754
Binary file not shown.
Binary file added pg-data/base/1/2755
Binary file not shown.
Binary file added pg-data/base/1/2756
Binary file not shown.
Binary file added pg-data/base/1/2757
Binary file not shown.
Empty file added pg-data/base/1/2830
Empty file.
Binary file added pg-data/base/1/2831
Binary file not shown.
Empty file added pg-data/base/1/2832
Empty file.
Binary file added pg-data/base/1/2833
Binary file not shown.
Empty file added pg-data/base/1/2834
Empty file.
Binary file added pg-data/base/1/2835
Binary file not shown.
Empty file added pg-data/base/1/2836
Empty file.
Binary file added pg-data/base/1/2837
Binary file not shown.
Binary file added pg-data/base/1/2838
Binary file not shown.
Binary file added pg-data/base/1/2838_fsm
Binary file not shown.
Binary file added pg-data/base/1/2838_vm
Binary file not shown.
Binary file added pg-data/base/1/2839
Binary file not shown.
Binary file added pg-data/base/1/2840
Binary file not shown.
Binary file added pg-data/base/1/2840_fsm
Binary file not shown.
Binary file added pg-data/base/1/2840_vm
Binary file not shown.
Binary file added pg-data/base/1/2841
Binary file not shown.
Empty file added pg-data/base/1/2995
Empty file.
Binary file added pg-data/base/1/2996
Binary file not shown.
Binary file added pg-data/base/1/3079
Binary file not shown.
Binary file added pg-data/base/1/3079_fsm
Binary file not shown.
Binary file added pg-data/base/1/3079_vm
Binary file not shown.
Binary file added pg-data/base/1/3080
Binary file not shown.
Binary file added pg-data/base/1/3081
Binary file not shown.
Binary file added pg-data/base/1/3085
Binary file not shown.
Empty file added pg-data/base/1/3118
Empty file.
Binary file added pg-data/base/1/3119
Binary file not shown.
Binary file added pg-data/base/1/3164
Binary file not shown.
Empty file added pg-data/base/1/3256
Empty file.
Binary file added pg-data/base/1/3257
Binary file not shown.
Binary file added pg-data/base/1/3258
Binary file not shown.
Empty file added pg-data/base/1/3350
Empty file.
Binary file added pg-data/base/1/3351
Binary file not shown.
Binary file added pg-data/base/1/3379
Binary file not shown.
Binary file added pg-data/base/1/3380
Binary file not shown.
Empty file added pg-data/base/1/3381
Empty file.
Binary file added pg-data/base/1/3394
Binary file not shown.
Binary file added pg-data/base/1/3394_fsm
Binary file not shown.
Binary file added pg-data/base/1/3394_vm
Binary file not shown.
Binary file added pg-data/base/1/3395
Binary file not shown.
Empty file added pg-data/base/1/3429
Empty file.
Empty file added pg-data/base/1/3430
Empty file.
Binary file added pg-data/base/1/3431
Binary file not shown.
Binary file added pg-data/base/1/3433
Binary file not shown.
Empty file added pg-data/base/1/3439
Empty file.
Binary file added pg-data/base/1/3440
Binary file not shown.
Binary file added pg-data/base/1/3455
Binary file not shown.
Binary file added pg-data/base/1/3456
Binary file not shown.
Binary file added pg-data/base/1/3456_fsm
Binary file not shown.
Binary file added pg-data/base/1/3456_vm
Binary file not shown.
Empty file added pg-data/base/1/3466
Empty file.
Binary file added pg-data/base/1/3467
Binary file not shown.
Binary file added pg-data/base/1/3468
Binary file not shown.
Empty file added pg-data/base/1/3501
Empty file.
Binary file added pg-data/base/1/3502
Binary file not shown.
Binary file added pg-data/base/1/3503
Binary file not shown.
Binary file added pg-data/base/1/3534
Binary file not shown.
Binary file added pg-data/base/1/3541
Binary file not shown.
Binary file added pg-data/base/1/3541_fsm
Binary file not shown.
Binary file added pg-data/base/1/3541_vm
Binary file not shown.
Binary file added pg-data/base/1/3542
Binary file not shown.
Binary file added pg-data/base/1/3574
Binary file not shown.
Binary file added pg-data/base/1/3575
Binary file not shown.
Empty file added pg-data/base/1/3576
Empty file.
Empty file added pg-data/base/1/3596
Empty file.
Binary file added pg-data/base/1/3597
Binary file not shown.
Empty file added pg-data/base/1/3598
Empty file.
Binary file added pg-data/base/1/3599
Binary file not shown.
Binary file added pg-data/base/1/3600
Binary file not shown.
Binary file added pg-data/base/1/3600_fsm
Binary file not shown.
Binary file added pg-data/base/1/3600_vm
Binary file not shown.
Binary file added pg-data/base/1/3601
Binary file not shown.
Binary file added pg-data/base/1/3601_fsm
Binary file not shown.
Binary file added pg-data/base/1/3601_vm
Binary file not shown.
Binary file added pg-data/base/1/3602
Binary file not shown.
Binary file added pg-data/base/1/3602_fsm
Binary file not shown.
Binary file added pg-data/base/1/3602_vm
Binary file not shown.
Binary file added pg-data/base/1/3603
Binary file not shown.
Binary file added pg-data/base/1/3603_fsm
Binary file not shown.
Binary file added pg-data/base/1/3603_vm
Binary file not shown.
Binary file added pg-data/base/1/3604
Binary file not shown.
Binary file added pg-data/base/1/3605
Binary file not shown.
Binary file added pg-data/base/1/3606
Binary file not shown.
Binary file added pg-data/base/1/3607
Binary file not shown.
Binary file added pg-data/base/1/3608
Binary file not shown.
Binary file added pg-data/base/1/3609
Binary file not shown.
Binary file added pg-data/base/1/3712
Binary file not shown.
Binary file added pg-data/base/1/3764
Binary file not shown.
Binary file added pg-data/base/1/3764_fsm
Binary file not shown.
Binary file added pg-data/base/1/3764_vm
Binary file not shown.
Binary file added pg-data/base/1/3766
Binary file not shown.
Binary file added pg-data/base/1/3767
Binary file not shown.
Binary file added pg-data/base/1/3997
Binary file not shown.
Empty file added pg-data/base/1/4143
Empty file.
Binary file added pg-data/base/1/4144
Binary file not shown.
Empty file added pg-data/base/1/4145
Empty file.
Binary file added pg-data/base/1/4146
Binary file not shown.
Empty file added pg-data/base/1/4147
Empty file.
Binary file added pg-data/base/1/4148
Binary file not shown.
Empty file added pg-data/base/1/4149
Empty file.
Binary file added pg-data/base/1/4150
Binary file not shown.
Empty file added pg-data/base/1/4151
Empty file.
Binary file added pg-data/base/1/4152
Binary file not shown.
Empty file added pg-data/base/1/4153
Empty file.
Binary file added pg-data/base/1/4154
Binary file not shown.
Empty file added pg-data/base/1/4155
Empty file.
Binary file added pg-data/base/1/4156
Binary file not shown.
Empty file added pg-data/base/1/4157
Empty file.
Binary file added pg-data/base/1/4158
Binary file not shown.
Empty file added pg-data/base/1/4159
Empty file.
Binary file added pg-data/base/1/4160
Binary file not shown.
Empty file added pg-data/base/1/4161
Empty file.
Binary file added pg-data/base/1/4162
Binary file not shown.
Empty file added pg-data/base/1/4163
Empty file.
Binary file added pg-data/base/1/4164
Binary file not shown.
Empty file added pg-data/base/1/4165
Empty file.
Binary file added pg-data/base/1/4166
Binary file not shown.
Empty file added pg-data/base/1/4167
Empty file.
Binary file added pg-data/base/1/4168
Binary file not shown.
Empty file added pg-data/base/1/4169
Empty file.
Binary file added pg-data/base/1/4170
Binary file not shown.
Empty file added pg-data/base/1/4171
Empty file.
Binary file added pg-data/base/1/4172
Binary file not shown.
Empty file added pg-data/base/1/4173
Empty file.
Binary file added pg-data/base/1/4174
Binary file not shown.
Binary file added pg-data/base/1/5002
Binary file not shown.
Binary file added pg-data/base/1/548
Binary file not shown.
Binary file added pg-data/base/1/549
Binary file not shown.
Empty file added pg-data/base/1/6102
Empty file.
Empty file added pg-data/base/1/6104
Empty file.
Empty file added pg-data/base/1/6106
Empty file.
Binary file added pg-data/base/1/6110
Binary file not shown.
Loading

0 comments on commit 0ae30d5

Please sign in to comment.