Reputation: 138
I installed the new Typo3 with the Introduction package. It looks great and feature accessability for the less compiler is great!
I am not new to Typo3 though I have a couple of questions about the best workflow.
Upvotes: 0
Views: 1132
Reputation: 7016
I usually provide my basic stuff in an extension and I try to have nothing stored in the database, e.g. in template records created from the backend, but everything in files. This way you can add everything to your git ord SVN or whatever versioning you are using.
This includes:
You add your own CSS files by including the via TypoScript:
page.includeCSS.myCustomFile = EXT:my_package/Resources/Public/Css/MyCustomFile.css
This folder structure follows the flow / extbase template for extensions in which every kind of resource is stored either in /Resources/Private (mostly templates and language files) or /Resources/Public for resources that need to be publicly accessible (CSS, JS, Images,...). If you follow this folder structure, your configuration is stored in /Configuration/TypoScript.
I haven't seen it yet by myself, but I guess the introduction distribution is an extension as well and as such located in typo3conf/ext/
Upvotes: 1