This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.1" | |
| services: | |
| wordpress: | |
| image: wordpress | |
| restart: always | |
| ports: | |
| - 8085:80 | |
| container_name: project-wordpress | |
| environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $cities = [ | |
| ['Resistencia'], | |
| ['Barranqueras'], | |
| ['Colonia Benítez'], | |
| ['Colonia Popular'], | |
| ['Margarita Belén'], | |
| ['Puerto Tirol'], | |
| ['El Zapallar'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var elixir = require('laravel-elixir'); | |
| elixir.config.publicPath = 'web'; | |
| elixir.config.appPath = 'src'; | |
| elixir.config.assetsPath = 'app/Resources/assets'; | |
| elixir(function(mix) { | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| preset: laravel | |
| linting: true | |
| enabled: | |
| - strict | |
| - unalign_double_arrow | |
| - phpdoc_order | |
| - phpdoc_separation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Directory "E:\Projects"> | |
| Allowoverride All | |
| Require all granted | |
| Allow from all | |
| </Directory> | |
| <VirtualHost *:80> | |
| DocumentRoot "E:\Projects\ejemplo.com\public" | |
| ServerName ejemplo.test | |
| </VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $finder = Symfony\Component\Finder\Finder::create() | |
| ->notPath('bootstrap/cache') | |
| ->notPath('storage') | |
| ->notPath('vendor') | |
| ->in(__DIR__) | |
| ->name('*.php') | |
| ->notName('*.blade.php') | |
| ->ignoreDotFiles(true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| listen [::]:80; | |
| root /var/www/laravel/public; | |
| index index.php index.html index.htm index.nginx-debian.html; | |
| server_name <Domain name or IP Address>; |