config en cours, bloque sur composer et son utilisation du proxy

This commit is contained in:
2024-06-12 14:35:18 +02:00
commit c2ddfbcd22
137 changed files with 12768 additions and 0 deletions

47
resources/Homestead.json Normal file
View File

@@ -0,0 +1,47 @@
{
"ip": "192.168.56.56",
"memory": 2048,
"cpus": 2,
"provider": "virtualbox",
"authorize": "~/.ssh/id_rsa.pub",
"keys": [
"~/.ssh/id_rsa"
],
"folders": [
{
"map": "~/code",
"to": "/home/vagrant/code"
}
],
"sites": [
{
"map": "homestead.test",
"to": "/home/vagrant/code/public"
}
],
"databases": [
"homestead"
],
"features": [
{
"mysql": true
},
{
"mariadb": false
},
{
"postgresql": false
},
{
"ohmyzsh": false
},
{
"webdriver": false
}
],
"services": [
{
"mysql": true
}
]
}