founders_template 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile-rails6.lock +1 -1
- data/lib/founders_template/cli.rb +2 -1
- data/lib/founders_template/version.rb +1 -1
- data/templates/docker-sync.yml.erb +20 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ed02317de02c7569651e0a875d6a1485fdce810c6fbcccc240ce03cd5c0eaba
|
4
|
+
data.tar.gz: 4bd92f5b1bd1dad179989ea1b7ce3ce85980106c1b003ef1a086b082d1be5b13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c80f489a732b55201373b8046c8524c002528c9605051123b2537060477fb6c835b66eb956c93112fe795a76f8c7965aaa205fdd0fc3117cbb8fa93e2f20cec
|
7
|
+
data.tar.gz: 6a97f1e3340570e32f5a85554eaeacaa30d0fca32048b9d3f1e35ef143687c8fec7b534a91e9b3d518e11d65e48562ada1735812a0e61cb4328a5eb9cc08395d
|
data/Gemfile-rails6.lock
CHANGED
@@ -50,8 +50,9 @@ module FoundersTemplate
|
|
50
50
|
ensure_secret_key
|
51
51
|
|
52
52
|
template 'buildspec.yml.erb', 'buildspec.yml'
|
53
|
-
template 'docker-compose.ci.yml.erb', 'docker-compose.ci.yml'
|
54
53
|
template 'dockerignore.erb', '.dockerignore'
|
54
|
+
template 'docker-compose.ci.yml.erb', 'docker-compose.ci.yml'
|
55
|
+
template 'docker-sync.yml.erb', 'docker-sync.yml'
|
55
56
|
|
56
57
|
directory 'ci', 'ci'
|
57
58
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
version: '2'
|
2
|
+
|
3
|
+
options:
|
4
|
+
verbose: false
|
5
|
+
|
6
|
+
syncs:
|
7
|
+
<%= app_config.short_name %>:
|
8
|
+
src: './'
|
9
|
+
host_disk_mount_mode: 'cached' # see https://docs.docker.com/docker-for-mac/osxfs-caching/#cached
|
10
|
+
sync_excludes:
|
11
|
+
- '.sass-cache'
|
12
|
+
- '.gitignore'
|
13
|
+
- '.git'
|
14
|
+
- 'tmp/db_data'
|
15
|
+
- 'tmp/cache'
|
16
|
+
- 'tmp/docker_data'
|
17
|
+
- '.docker-sync'
|
18
|
+
- 'docker-sync.yml'
|
19
|
+
- 'docker-compose.yml'
|
20
|
+
- 'terraform'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: founders_template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Trae Robrock
|
@@ -130,6 +130,7 @@ files:
|
|
130
130
|
- templates/ci/post_build.sh
|
131
131
|
- templates/ci/run_tests.sh
|
132
132
|
- templates/docker-compose.ci.yml.erb
|
133
|
+
- templates/docker-sync.yml.erb
|
133
134
|
- templates/dockerignore.erb
|
134
135
|
- templates/ft.yml.erb
|
135
136
|
homepage: https://github.com/trobrock/founders_template
|