This commit is contained in:
2023-02-20 15:51:10 +01:00
parent 0957e5ef32
commit 254a9e4085
4 changed files with 85 additions and 19 deletions

55
.vscode/settings.json vendored
View File

@ -1,3 +1,56 @@
{
"liveServer.settings.port": 3001
"liveServer.settings.port": 3001,
"deploy":
{
"packages":
[
{
"name": "local Server Version website",
"description": "local Server website files",
"files":
[
"build/**"
],
"exclude":
[
"./build/favicon___.ico"
],
"button":
{
"text": "local website",
"targets": ["localhost website files"]
}
},
{
"name": "local Server Version php",
"description": "local Server php files",
"files":
[
"/php/php-dog/**",
],
"button":
{
"text": "local php",
"targets": ["localhost php files"]
}
}
],
"targets":
[
{
"type": "local",
"name": "localhost website files",
"description": "localhost apache website files",
"dir": "/opt/lampp/htdocs/dog/www",
},
{
"type": "local",
"name": "localhost php files",
"description": "localhost apache php files",
"dir": "/opt/lampp/htdocs/dog/php-dog/",
}
]
}
}