Turnkey local development tips
(Replacing message template with parser tag)
(Updated Edited template to July 12, 2025.)
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
One issue you may not want is having your source code for SCSS, CSS, and EXT_Components inside the Turnkey core file tree - but they must be found there by the web server. This can be addressed with the standard Windows function of symbolic links for directories or files:
One issue you may not want is having your source code for SCSS, CSS, and EXT_Components inside the Turnkey core file tree - but they must be found there by the web server. This can be addressed with the standard Windows function of symbolic links for directories or files:
  mklink /d C:\<turnkey core location>\EXT_Components\MoveAroundInGrid C:\<source code location>\EcoProject1_AssetsTK\EXT_Components\MoveAroundInGrid
  mklink /d C:\<turnkey core location>\EXT_Components\MoveAroundInGrid C:\<source code location>\EcoProject1_AssetsTK\EXT_Components\MoveAroundInGrid
To break a symbolic link, call rd c:\<link to break> - Read the [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mklink full documentation here].
To break a symbolic link, call rd c:\<link to break>  
 
Read the [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mklink full documentation here].
[[Category:MDriven Turnkey]]
[[Category:MDriven Turnkey]]
{{Edited|July|12|2024}}
{{Edited|July|12|2025}}

Latest revision as of 06:05, 20 January 2025

This page was created by Hans.karlsen@mdriven.net on 2019-07-14. Last edited by Edgar on 2025-01-20.

Running the local core Turnkey app is a great way to shorten the development loop.

One issue you may not want is having your source code for SCSS, CSS, and EXT_Components inside the Turnkey core file tree - but they must be found there by the web server. This can be addressed with the standard Windows function of symbolic links for directories or files:

mklink /d C:\<turnkey core location>\EXT_Components\MoveAroundInGrid C:\<source code location>\EcoProject1_AssetsTK\EXT_Components\MoveAroundInGrid

To break a symbolic link, call rd c:\<link to break>

Read the full documentation here.