Alexandre Quercia
Alexandre Quercia
``` python def foo(bar, baz): """This function do somthing. @param bar: @param baz: @return: @raise : """ ```
https://www.gnu.org/prep/standards/html_node/_002d_002dversion.html#g_t_002d_002dversion
There are no possibility to skip install scripts for apt-get, dpkg and also for the cygwin setup.exe: http://pwet.fr/man/linux/administration_systeme/apt_get http://pwet.fr/man/linux/commandes/dpkg https://cygwin.com/faq.html#faq.setup.cli https://github.com/nylen/cyg-apt/pull/13#issuecomment-51651248
In order to be able to test the project without having required platform.
Todo ---- - [ ] Add the minimum executable test
Changes - Remove `sidecars.image.depends_on` - Keep `sidecars.depends_on` - Keep `image.depends_on` To not introduce duplication is creating an abstract common `image` template with same fields used on both concrete `image` Map....
### Actual On the doc https://aws.github.io/copilot-cli/docs/developing/sidecars/#image-depends-on ```yaml image: build: ./Dockerfile depends_on: nginx: start startup: success ```  ### Expected/Working ```yaml sidecars: some_sidecar: image: build: ./Dockerfile depends_on: nginx: start startup: success...
Hello there, Big thanks for this tool. version 1.34.0 ### Describe your feature In order to configure SSL policy of the CDN. I wish Copilot would avoid us to patch...
### Given files composer.json ```json { "autoload": { "psr-4": { "App\\": "src/" } } } ``` src/AbstractClass.php ```php