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
| PB.targets in Compile := Seq( | |
| scalapb.gen() -> (sourceManaged in Compile).value | |
| ) | |
| lazy val generateEventSerializer = TaskKey[Seq[File]]("generateEventSerializer", "Write code for me.") | |
| generateEventSerializer := { | |
| import sys.process._ | |
| "./make-proto-serializer.sh".! |
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: '2' | |
| services: | |
| db: | |
| image: postgres:9.6 | |
| command: postgres -c 'max_connections=300' -c 'shared_buffers=4GB' -c 'work_mem=16MB' -c 'maintenance_work_mem=1GB' -c 'bgwriter_lru_maxpages=200' -c 'commit_delay=10' -c 'checkpoint_timeout=30min' -c 'checkpoint_warning=30min' -c 'log_timezone=Canada/Mountain' -c 'timezone=Canada/Mountain' | |
| volumes: | |
| - ${PWD}/docker/db/initdb.sh:/docker-entrypoint-initdb.d/initdb.sh | |
| ports: | |
| - "5432:5432" |
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 | |
| tr=trigger | |
| tr='==============_AUTOGENERATED_-_EDITS_BELOW_WILL_BE_CLOBBERED' | |
| [ ! -f test ] && cat <<EOF >test | |
| this | |
| is a | |
| trigger | |
| test |
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 | |
| tr=trigger | |
| tr='==============_AUTOGENERATED_-_EDITS_BELOW_WILL_BE_CLOBBERED' | |
| [ ! -f test.conf ] && cat <<EOF >test.conf | |
| this | |
| is a | |
| trigger | |
| test |
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 | |
| function do_not_change_this_function() { | |
| echo "Something is happening\n"; | |
| echo "this is important data\n"; | |
| ob_flush(); |
OlderNewer