--- /dev/null
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Run page-generator",
+ "type": "firefox",
+ "request": "launch",
+ "reAttach": true,
+ "reloadOnAttach": true,
+ // "reloadOnChange": "${workspaceFolder}/public/**",
+ "file": "${workspaceFolder}/public/pages/",
+ "preLaunchTask": "page-generator"
+ }
+ ],
+}
\ No newline at end of file
--- /dev/null
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "shell",
+ "label": "page-generator",
+ "command": "cd ${workspaceFolder}/page-generator && php index.php",
+ }
+ ]
+}