keycloak-scim/topics/installation/directory-structure.adoc

41 lines
1.4 KiB
Text
Raw Normal View History

2016-04-21 14:26:04 +00:00
=== Distribution Directory Structure
2016-04-20 22:04:17 +00:00
2016-04-20 22:17:10 +00:00
This chapter walks you through the directory structure of the server distribution.
2016-04-20 23:00:27 +00:00
.distribution directory structure
2016-04-20 22:39:07 +00:00
{% if book.product %}
2016-04-20 23:00:27 +00:00
. image:../../rhsso-images/files.png[alt="distribution"]
2016-04-21 15:15:52 +00:00
{% endif %}
{% if book.community %}
2016-04-20 23:00:27 +00:00
image:../../keycloak-images/files.png[alt="distribution"]
2016-04-20 22:37:02 +00:00
{% endif %}
2016-04-20 23:00:27 +00:00
Let's examine some of the purposes of each directory
_bin/_::
This contains various scripts to either boot the server or perform some other management action on the server.
_domain/_::
2016-04-21 13:03:05 +00:00
This contains configuration files and working directory when running {{book.project.name}} in <<fake/../../domain-mode.adoc#,domain mode>>.
2016-04-20 23:00:27 +00:00
_modules/_::
These are all the Java libraries used by the server.
_providers/_::
If you are writing extensions to keycloak, you can put your extensions here. See the link:http://not-implemented-yet[Server Developer Guide] for more information on this.
_standalone/_::
2016-04-21 13:03:05 +00:00
This contains configuration files and working directory when running {{book.project.name}} in <<fake/../../standalone-mode.adoc#,standalone mode>>.
2016-04-20 23:00:27 +00:00
_themes/_::
This directory contains all the html, style sheets, javascript files, and images used to display any UI screen displayed by the server.
Here you can modify an existing theme or create your own. See the link:http://not-implemented-yet[Server Developer Guide] for more information on this.
2016-04-20 22:37:02 +00:00
2016-04-20 22:24:22 +00:00