One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| ### Keybase proof | |
| I hereby claim: | |
| * I am beamop on github. | |
| * I am beamop (https://keybase.io/beamop) on keybase. | |
| * I have a public key whose fingerprint is 4273 DA96 C532 E1F8 7DCD 14BD 9CC9 C5B6 E5A2 9CBD | |
| To claim this, I am signing this object: |
| A Statement from Philip R. Zimmermann | |
| Senior Fellow, Network Associates | |
| Founder, PGP Inc. | |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA1 | |
| I'd like to address the rumors concerning the cryptographic | |
| integrity of PGP, including recent versions made by Network | |
| Associates, as well as recent freeware versions built and |
| web: vendor/bin/heroku-php-nginx -C nginx_app.conf web/ |
| /** | |
| * @Route("/app/links/export.csv", name="app_export_links") | |
| */ | |
| public function exportLinksAction() | |
| { | |
| $em = $this->getDoctrine()->getManager(); | |
| $links = $em | |
| ->getRepository(Links::class) | |
| ->findAll(); |
| # Default termtype. If the rcfile sets $TERM, that overrides this value. | |
| set -g default-terminal screen-256color | |
| # support logging out and back in | |
| set -g update-environment "SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION" | |
| # pbcopy support | |
| set-option -g default-command "reattach-to-user-namespace -l bash" | |
| # vi mode |
| version: '3' | |
| services: | |
| # Database | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: |