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
{% extends 'layout_modal.html.twig' %} | |
{% trans_default_domain 'front' %} | |
{% set attr = { | |
'data-backdrop': 'static', | |
'data-show': 'true' | |
} %} | |
{% block id 'ticket-feedback-modal' %} |
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
#!/usr/bin/env bash | |
if [ "$#" -ge 1 ]; then | |
docker exec -u $(whoami) -it project_console_1 "$@" | |
else | |
docker exec -u $(whoami) -it project_console_1 bash | |
fi |
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
enabled: | |
function_declaration: | |
single_line: 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
$ strace docker-compose up -d | |
execve("/usr/local/bin/docker-compose", ["docker-compose", "up", "-d"], [/* 26 vars */]) = -1 ENOENT (No such file or directory) | |
writev(2, [{"strace: exec: No such file or di"..., 39}, {"\n", 1}], 2strace: exec: No such file or directory | |
) = 40 | |
writev(2, [{"", 0}, {NULL, 0}], 2) = 0 | |
getpid() = 38 | |
exit_group(1) = ? | |
+++ exited with 1 +++ |
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
$ ldd /usr/local/bin/docker-compose | |
/lib64/ld-linux-x86-64.so.2 (0x7fcdef76c000) | |
libdl.so.2 => /lib64/ld-linux-x86-64.so.2 (0x7fcdef76c000) | |
libz.so.1 => /lib/libz.so.1 (0x7fcdef556000) | |
libc.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7fcdef76c000) |
This file has been truncated, but you can view the full file.
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
Omnis error ea nam non fuga nihil eos voluptatum voluptate at maxime vel similique sit qui omnis quo beatae quis similique necessitatibus recusandae dolores rerum a facere. | |
Suscipit aliquam minima exercitationem eius iste eum velit sit necessitatibus ducimus cumque sed laborum. | |
Nemo autem molestiae eaque temporibus consequatur esse quam deleniti reprehenderit voluptatem adipisci dolor velit. | |
Voluptatum voluptatum a voluptas iste ea vel sit et consectetur perspiciatis deleniti eveniet et corrupti. | |
Sed qui atque est fugit eius aut sunt nulla molestias et est nihil quae velit autem. | |
Non facilis eum eius ex ipsam similique voluptatem quidem alias cupiditate voluptatum dolores perspiciatis sunt. | |
Facere repellat sint et voluptatem aperiam sit et aliquid ut libero molestiae dolorem eveniet voluptatem ut enim sed unde non. | |
Placeat sequi perspiciatis eos blanditiis autem dolorem quaerat et repudiandae inventore ut vel unde voluptas laudantium quisquam inventore aspernatur sunt. | |
Quisquam ipsa fugiat dolor facere volupt |
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
namespace :config do | |
desc "Download config file" | |
task :download do | |
on roles(:app), in: :parallel do |server| | |
system "scp #{server.user}@#{server.hostname}:#{shared_path}/config/config.php config/config.php" | |
end | |
end | |
desc "Upload and setup config file" | |
task :upload do |
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
s/icon-ban-circle/fa fa-ban/g | |
s/icon-bar-chart/fa fa-bar-chart-o/g | |
s/icon-beaker/fa fa-flask/g | |
s/icon-bell/fa fa-bell-o/g | |
s/icon-bell-alt/fa fa-bell/g | |
s/icon-bitbucket-sign/fa fa-bitbucket-square/g | |
s/icon-bookmark-empty/fa fa-bookmark-o/g | |
s/icon-building/fa fa-building-o/g | |
s/icon-calendar-empty/fa fa-calendar-o/g | |
s/icon-check-empty/fa fa-square-o/g |
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
s/.icon-ban-circle/.fa.fa-ban/g | |
s/.icon-bar-chart/.fa.fa-bar-chart-o/g | |
s/.icon-beaker/.fa.fa-flask/g | |
s/.icon-bell/.fa.fa-bell-o/g | |
s/.icon-bell-alt/.fa.fa-bell/g | |
s/.icon-bitbucket-sign/.fa.fa-bitbucket-square/g | |
s/.icon-bookmark-empty/.fa.fa-bookmark-o/g | |
s/.icon-building/.fa.fa-building-o/g | |
s/.icon-calendar-empty/.fa.fa-calendar-o/g | |
s/.icon-check-empty/.fa.fa-square-o/g |
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 | |
namespace Your\UtilsBundle\Form\Type; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\Form\FormBuilder; | |
use Symfony\Component\Form\FormBuilderInterface; | |
use Doctrine\Common\Persistence\ObjectManager; | |
/** |