You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Refactoring of Singleton loading (Spring)
- Refactoring of configuration loading
- Understand new YAML format
- output tile size with YAML
- more stuff
Copy file name to clipboardExpand all lines: README.md
+33-10
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,47 @@
1
1
2
-
This is the TileBuilder tile server. It serves image tiles for [CATMAID](https://github.com/catmaid/CATMAID). TileBuilder is a self-contained Java application that launches a web server on port 8000. TileBuilder reads images in a specialized HDF5 format which can be generated with the [Fiji plugin from the /scripts directory](https://github.com/fzadow/tileserver/tree/master/scripts).
2
+
This is the TileBuilder tile server. It serves image tiles for [CATMAID](https://github.com/catmaid/CATMAID). TileBuilder is a self-contained Java application that launches a web server on a configurable port (default: 8080). TileBuilder reads images in a specialized HDF5 format which can be generated with the [Fiji plugin from the /scripts directory](https://github.com/fzadow/tileserver/tree/master/scripts).
3
3
4
-
# Simple Installation
4
+
TileBuilder has been tested to run with Java 7 and 8.
5
5
6
-
* Make sure Java 8 is installed on your server.
7
-
* Download the [WAR file from the /target directory](https://github.com/fzadow/tileserver/raw/master/target/tilebuilder.war) to your server, for example by using the wget command
6
+
# Simple Installation (using the pre-built TileBuilder.war)
* create `/opt/etc/tileserver/config.properties` or edit the `config.properties` within the WAR.
11
-
* customize config.properties (see https://github.com/fzadow/tileserver/blob/master/config.properties):
8
+
* Create a directory that you want to run TileBuilder from on your web server and change to that directory. For example, go to your home (`~`) directory and create the directory "tilebuilder":
9
+
10
+
```
11
+
cd ~
12
+
mkdir tilebuilder
13
+
cd tilebuilder
14
+
```
15
+
16
+
* Within the directory you created, create another directory that will later hold the images TileBuilder will serve.
17
+
18
+
```
19
+
mkdir images
20
+
```
21
+
22
+
23
+
* Download the [WAR file from the /target directory](https://github.com/fzadow/tileserver/raw/master/target/tilebuilder.war) and the [sample configuration file](https://github.com/fzadow/tileserver/raw/master/config.properties) to your server, for example by using these commands
0 commit comments