| 1 | = Trac Storage - The Environment = |
| 2 | Trac uses a directory structure and an embedded [http://www.sqlite.org/ SQLite] database as storage. |
| 3 | |
| 4 | |
| 5 | == Directory Structure == |
| 6 | {{{ |
| 7 | EnvDir |
| 8 | |-- README |
| 9 | |-- VERSION |
| 10 | |-- attachments |
| 11 | | |-- ticket |
| 12 | | `-- wiki |
| 13 | |-- conf |
| 14 | | `-- trac.ini |
| 15 | |-- db |
| 16 | | `-- trac.db |
| 17 | |-- log |
| 18 | | `-- trac.log |
| 19 | |-- templates |
| 20 | | |-- site_css.cs |
| 21 | | |-- site_footer.cs |
| 22 | | `-- site_header.cs |
| 23 | `-- wiki-macros |
| 24 | }}} |
| 25 | |
| 26 | * '''README''' - Brief description of the environment. |
| 27 | * '''VERSION''' - Contains the environment version identifier. |
| 28 | * '''attachments''' - All attached files go in here. |
| 29 | * '''ticket''' - Ticket attachments. |
| 30 | * '''wiki''' - Wiki attachments. |
| 31 | * '''conf''' |
| 32 | * '''trac.ini''' - Main configuration file. See TracIni. |
| 33 | * '''db''' |
| 34 | * '''trac.db''' - SQLite database. |
| 35 | * '''templates''' - Custom (environment-specific) templates. |
| 36 | * '''site_css.cs''' - Custom CSS stylesheet. |
| 37 | * '''site_footer.cs''' - Custom footer. |
| 38 | * '''site_header.cs''' - Custom header. |
| 39 | * '''wiki-macros''' - Environment-specific WikiMacros. |
| 40 | |
| 41 | ---- |
| 42 | See also: TracBackup, TracIni, TracGuide |