wco_models 3.1.0.147 → 3.1.0.149

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/wco/leads_controller.rb +6 -2
  3. data/app/controllers/wco/profiles_controller.rb +10 -0
  4. data/app/controllers/wco/tags_controller.rb +3 -2
  5. data/app/models/wco/profile.rb +7 -0
  6. data/app/models/wco/tag.rb +2 -1
  7. data/app/models/wco_hosting/appliance.rb +8 -4
  8. data/app/models/wco_hosting/appliance_tmpl.rb +24 -4
  9. data/app/models/wco_hosting/environment.rb +3 -0
  10. data/app/models/wco_hosting/runner.rb +26 -0
  11. data/app/models/wco_hosting/task.rb +8 -0
  12. data/app/models/wco_hosting/task_tmpl.rb +11 -0
  13. data/app/views/wco/_main_header.haml +1 -0
  14. data/app/views/wco/profiles/_form.haml +9 -0
  15. data/app/views/wco/profiles/_header.haml +6 -0
  16. data/app/views/wco/profiles/edit.haml +6 -0
  17. data/app/views/wco/profiles/index.haml +10 -0
  18. data/app/views/wco/tags/_form.haml +4 -0
  19. data/app/views/wco/tags/edit.haml +2 -0
  20. data/app/views/wco/tags/index.haml +6 -1
  21. data/app/views/wco/tags/new.haml +6 -0
  22. data/app/views/wco_hosting/ecs_task_definitions/demmitv.json +40 -0
  23. data/app/views/wco_hosting/ecs_task_definitions/demmitv_drupal_ecs1-0.0.0.zip +0 -0
  24. data/app/views/wco_hosting/ecs_task_definitions/drupal.json-template +40 -0
  25. data/app/views/wco_hosting/ecs_task_definitions/example1.json +41 -0
  26. data/app/views/wco_hosting/ecs_task_definitions/example2.txt-trash +54 -0
  27. data/app/views/wco_hosting/ecs_task_definitions/hw1.json +40 -0
  28. metadata +18 -5
  29. /data/app/views/wco_hosting/docker-compose/{dc-helloworld.erb → trash/dc-helloworld.erb} +0 -0
  30. /data/app/views/wco_hosting/docker-compose/{dc-react.erb → trash/dc-react.erb} +0 -0
  31. /data/app/views/wco_hosting/docker-compose/{dc-wordpress.erb → trash/dc-wordpress.erb} +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9dda9cec9a14631ff34abd28542db031215e9431ebe422329e1f3c8a6fb295ea
4
- data.tar.gz: 0fa1061f925315c0894b17e73ea1fbdde9e588cc6d1094c9ad4c94f04b8f1b34
3
+ metadata.gz: 4ee4313ebc6b594dd44a3b5393ccf9495fb2e475c42c5677e1bf285361b81f89
4
+ data.tar.gz: f6cf48e41de6a37250064ffff72f78db0e9d142651d54aefafbcff18dcd0bc53
5
5
  SHA512:
6
- metadata.gz: b25ec1622c39432e74881462374afcfb21822a3d686bef81eaf32fa3afec23bb52eac3a2daa58cf09c66ef26c1bed0760e5ddc93264c59b1745605bc1d84d995
7
- data.tar.gz: c2ae2e54509129cfcd18f56762bfb53861d55c4d6030f721a7739d1979a6324ec3fbfe3ec76ecb1984e94ff30ea0cacbf94a05292dd030178e7aec41aa416c61
6
+ metadata.gz: c962c417116006e454cf1a3001027592af407c37f8368189db155678f2bdc3ef588eeb7fe4af9c140a760299d22a2080132b0db441a08446e6839a43aa749ceb
7
+ data.tar.gz: 5ae5fff70b299b0b8cee57b8c16997580a8a98989dba824a2129629ec18a10b59e3bd67c265bc6ad5174edccdc1811bde790068f3f2b015d8f44fb67b67fd6b7
@@ -26,10 +26,14 @@ class Wco::LeadsController < Wco::ApplicationController
26
26
  authorize! :index, Wco::Lead
27
27
  @leads = Wco::Lead.all
28
28
 
29
+
30
+
29
31
  if params[:q].present?
32
+ q = params[:q].downcase
30
33
  @leads = @leads.any_of(
31
- { email: /#{params[:q].downcase}/i },
32
- { name: /#{params[:q].downcase}/i } )
34
+ { email: /#{q}/i },
35
+ { name: /#{q}/i },
36
+ );
33
37
 
34
38
  if 1 == @leads.length
35
39
  redirect_to controller: 'wco/leads', action: 'show', id: @leads[0].id
@@ -1,6 +1,16 @@
1
1
 
2
2
  class Wco::ProfilesController < Wco::ApplicationController
3
3
 
4
+ def edit
5
+ @profile = Wco::Profile.find params[:id]
6
+ authorize! :update, @profile
7
+ end
8
+
9
+ def index
10
+ @profiles = Wco::Profile.all
11
+ authorize! :index, Wco::Profile
12
+ end
13
+
4
14
  def update
5
15
  @profile = Wco::Profile.find params[:id]
6
16
  authorize! :update, @profile
@@ -1,7 +1,7 @@
1
1
 
2
2
  class Wco::TagsController < Wco::ApplicationController
3
3
 
4
- before_action :set_lists, only: %i| show |
4
+ before_action :set_lists
5
5
 
6
6
  def create
7
7
  @tag = Wco::Tag.new params[:tag].permit!
@@ -37,7 +37,6 @@ class Wco::TagsController < Wco::ApplicationController
37
37
 
38
38
  def new
39
39
  authorize! :new, Wco::Tag
40
- @new_tag = Wco::Tag.new
41
40
  end
42
41
 
43
42
  def add_to
@@ -91,7 +90,9 @@ class Wco::TagsController < Wco::ApplicationController
91
90
  private
92
91
 
93
92
  def set_lists
93
+ @new_tag = Wco::Tag.new
94
94
  @tags = Wco::Tag.all.order_by( slug: :asc )
95
+ @tags_list = Wco::Tag.list
95
96
  end
96
97
 
97
98
 
@@ -16,6 +16,13 @@ class Wco::Profile
16
16
  has_many :newsitems, class_name: 'Wco::Newsitem'
17
17
  has_and_belongs_to_many :shared_galleries, class_name: 'Wco::Gallery', inverse_of: :shared_profiles
18
18
 
19
+ ROLE_ADMIN = 'admin'
20
+ ROLE_GUY = 'guy'
21
+ ROLES = [ ROLE_ADMIN, ROLE_GUY ]
22
+ field :role, type: :string, default: ROLE_GUY
23
+ def self.roles_list
24
+ [nil] + ROLES
25
+ end
19
26
 
20
27
  def to_s
21
28
  email
@@ -9,7 +9,8 @@ class Wco::Tag
9
9
  validates :slug, presence: true, uniqueness: true
10
10
  index({ slug: -1 })
11
11
 
12
- # parent-child
12
+ belongs_to :parent, class_name: 'Wco::Tag', inverse_of: :sons
13
+ has_many :sons, class_name: 'Wco::Tag', inverse_of: :parent
13
14
 
14
15
  has_many :email_filters, class_name: 'WcoEmail::EmailFilter', inverse_of: :tag
15
16
 
@@ -16,7 +16,11 @@ class WcoHosting::Appliance
16
16
  self[:service_name] = host.gsub(".", "_")
17
17
  end
18
18
 
19
+
19
20
  belongs_to :environment, class_name: 'WcoHosting::Environment', inverse_of: :appliances, optional: true
21
+ def environment_name
22
+ environment&.name
23
+ end
20
24
 
21
25
  field :subdomain
22
26
  field :domain
@@ -34,13 +38,13 @@ class WcoHosting::Appliance
34
38
  tmpl.kind
35
39
  end
36
40
 
37
- belongs_to :serverhost, class_name: 'WcoHosting::Serverhost'
41
+ belongs_to :serverhost, class_name: 'WcoHosting::Serverhost', optional: true
38
42
 
39
43
  field :port
40
44
 
41
- STATE_PENDING = 'state-pending'
42
- STATE_LIVE = 'state-live'
43
- STATE_TERM = 'state-term'
45
+ STATE_PENDING = 'pending'
46
+ STATE_LIVE = 'live'
47
+ STATE_TERMINATED = 'terminated'
44
48
  field :state, default: STATE_PENDING
45
49
 
46
50
  def to_s
@@ -18,11 +18,31 @@ class WcoHosting::ApplianceTmpl
18
18
  end
19
19
  field :descr, type: :string
20
20
 
21
- field :image
22
- validates :image, presence: true
21
+ field :ecs_task_definition_erb, type: :string
22
+ # def ecs_task_definition
23
+ # ac = ActionController::Base.new
24
+ # ac.instance_variable_set( :@tmpl, self )
25
+ # rendered_str = ac.render_to_string("wco_hosting/scripts/nginx_site.conf")
26
+ # Wco::Log.puts! rendered_str, 'add_nginx_site rendered_str', obj: @obj
27
+
28
+ # file = Tempfile.new('prefix')
29
+ # file.write rendered_str
30
+ # file.close
31
+ # end
32
+
23
33
 
24
- field :volume_zip
25
- validates :volume_zip, presence: true
34
+ field :image
35
+ # validates :image, presence: true
36
+
37
+ field :volume_zip_url
38
+ field :volume_zip_exe
39
+ def volume_zip
40
+ if volume_zip_exe
41
+ eval( volume_zip_exe )
42
+ else
43
+ volume_zip_url
44
+ end
45
+ end
26
46
 
27
47
  ## 2023-12-08 :: These names are impossible to change already.
28
48
  KIND_CRM = 'crm'
@@ -13,6 +13,9 @@ class WcoHosting::Environment
13
13
 
14
14
  has_many :appliances, class_name: 'WcoHosting::Appliance', inverse_of: :environments
15
15
 
16
+ ## variable @env in execution environments
17
+ field :env_json, type: Object, default: '{}'
18
+
16
19
  def to_s
17
20
  name
18
21
  end
@@ -0,0 +1,26 @@
1
+
2
+ require 'net/scp'
3
+ require 'open3'
4
+ require 'droplet_kit'
5
+
6
+ class WcoHosting::Runner
7
+
8
+ def self.create_ecs_task
9
+ end
10
+
11
+ TASK_REDEPLOY_ECS_TASK_DEFINITION = 'redeploy-ecs-task-definition'
12
+ TASK_REDEPLOY_ECS_TASK = 'redeploy-ecs-task'
13
+ TASKS = []
14
+
15
+ def self.do_exec cmd
16
+ Wco::Log.puts! cmd, '#do_exec', obj: @obj
17
+
18
+ stdout, stderr, status = Open3.capture3(cmd)
19
+ status = status.to_s.split.last.to_i
20
+ Wco::Log.puts! stdout, 'stdout', obj: @obj
21
+ Wco::Log.puts! stderr, 'stderr', obj: @obj
22
+ Wco::Log.puts! status, 'status', obj: @obj
23
+ return { stdout: stdout, stderr: stderr, status: status }
24
+ end
25
+
26
+ end
@@ -0,0 +1,8 @@
1
+
2
+ class WcoHosting::Task
3
+ include Mongoid::Document
4
+ include Mongoid::Timestamps
5
+ include Mongoid::Paranoia
6
+ store_in collection: 'wco_tasks'
7
+
8
+ end
@@ -0,0 +1,11 @@
1
+
2
+ class WcoHosting::TaskTmpl
3
+ include Mongoid::Document
4
+ include Mongoid::Timestamps
5
+ include Mongoid::Paranoia
6
+ store_in collection: 'wco_task_tmpls'
7
+
8
+ field :slug
9
+ validates :slug, presence: true
10
+
11
+ end
@@ -28,6 +28,7 @@
28
28
  %li= render '/wco/leads/header'
29
29
  %li= render '/wco/office_action_templates/header'
30
30
  %li= render '/wco/office_actions/header'
31
+ %li= render '/wco/profiles/header'
31
32
 
32
33
  %ul
33
34
  %li= render '/wco/sites/header'
@@ -0,0 +1,9 @@
1
+
2
+ .profiles--form
3
+ = form_for profile do |f|
4
+ .field
5
+ %label role
6
+ = f.select :role, options_for_select(Wco::Profile.roles_list, selected: profile.role )
7
+
8
+ .actions
9
+ = f.submit 'Go'
@@ -0,0 +1,6 @@
1
+
2
+ = link_to "Profiles (#{Wco::Profile.all.length})", wco.profiles_path
3
+ .inline-search
4
+ = form_tag wco.profiles_path, method: :get do
5
+ = text_field_tag :q
6
+ = link_to '[+]', wco.new_profile_path
@@ -0,0 +1,6 @@
1
+
2
+ .profiles-edit.maxwidth
3
+ .header
4
+ .title edit profile
5
+
6
+ = render 'form', profile: @profile
@@ -0,0 +1,10 @@
1
+
2
+ .profiles-index.maxwidth
3
+ .header
4
+ .title Profiles
5
+
6
+ %ul
7
+ - @profiles.each do |profile|
8
+ %li
9
+ = link_to '[~]', edit_profile_path(profile)
10
+ = profile.email
@@ -6,5 +6,9 @@
6
6
  %label slug
7
7
  = f.text_field :slug
8
8
 
9
+ .field.d-flex
10
+ %label parent
11
+ = f.select :parent_id, options_for_select(@tags_list, selected: tag.parent_id ), {}, class: 'select2'
12
+
9
13
  .actions
10
14
  = f.submit
@@ -1,4 +1,6 @@
1
1
 
2
2
  .tags-edit.maxwidth
3
+ .header
4
+ %h5.title Edit tag `#{@tag}`
3
5
 
4
6
  = render 'form', tag: @tag
@@ -6,4 +6,9 @@
6
6
  = render 'index', tags: @tags
7
7
 
8
8
  %hr
9
- = render 'form', tag: Wco::Tag.new
9
+
10
+ .tags-new.maxwidth
11
+ .header
12
+ %h5.title New tag
13
+
14
+ = render 'form', tag: @new_tag
@@ -0,0 +1,6 @@
1
+
2
+ .tags-new.maxwidth
3
+ .header
4
+ %h5.title New tag
5
+
6
+ = render 'form', tag: @new_tag
@@ -0,0 +1,40 @@
1
+
2
+ {
3
+ "family": "demmitv_drupal",
4
+ "networkMode": "awsvpc",
5
+ "taskRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
6
+ "executionRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
7
+ "containerDefinitions": [
8
+ {
9
+ "name": "demmitv_drupal_ecs1",
10
+ "image": "piousbox/php81:0.0.2",
11
+ "portMappings": [
12
+ {
13
+ "containerPort": 80,
14
+ "hostPort": 80,
15
+ "protocol": "tcp"
16
+ }
17
+ ],
18
+ "logConfiguration": {
19
+ "logDriver": "awslogs",
20
+ "options": {
21
+ "awslogs-create-group": "true",
22
+ "awslogs-group": "drupal-1",
23
+ "awslogs-region": "us-east-2",
24
+ "awslogs-stream-prefix": "wco-"
25
+ }
26
+ },
27
+ "essential": true,
28
+ "entryPoint": [
29
+ "sh",
30
+ "-c"
31
+ ],
32
+ "command": [
33
+ "/bin/sh -c \"cd /var/www/html && curl -u abba:simplerpassword https://secrets.wasya.co/demmitv_drupal_ecs1.zip --output demmitv_drupal_ecs1-0.0.0.zip && unzip -o demmitv_drupal_ecs1-0.0.0.zip && cd web && apachectl -D FOREGROUND \" "
34
+ ]
35
+ }
36
+ ],
37
+ "requiresCompatibilities": [ "FARGATE" ],
38
+ "cpu": "256",
39
+ "memory": "512"
40
+ }
@@ -0,0 +1,40 @@
1
+
2
+ {
3
+ "family": "drupal",
4
+ "networkMode": "awsvpc",
5
+ "taskRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
6
+ "executionRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
7
+ "containerDefinitions": [
8
+ {
9
+ "name": "<%= @app.kind %>_drupal_<%= @app.environment_name %>",
10
+ "image": "piousbox/php81:0.0.2",
11
+ "portMappings": [
12
+ {
13
+ "containerPort": 80,
14
+ "hostPort": 80,
15
+ "protocol": "tcp"
16
+ }
17
+ ],
18
+ "logConfiguration": {
19
+ "logDriver": "awslogs",
20
+ "options": {
21
+ "awslogs-create-group": "true",
22
+ "awslogs-group": "drupal-1",
23
+ "awslogs-region": "us-east-2",
24
+ "awslogs-stream-prefix": "wco-"
25
+ }
26
+ },
27
+ "essential": true,
28
+ "entryPoint": [
29
+ "sh",
30
+ "-c"
31
+ ],
32
+ "command": [
33
+ "/bin/sh -c \"cd /var/www/html && curl -u abba:simplerpassword https://secrets.wasya.co/<%= @app.kind %>_drupal_<%= @app.environment_name %>-<%= @app.version %>.zip && unzip <%= @app.kind %>_drupal_<%= @app.environment_name %>-<%= @app.version %>.zip && composer install && apachectl -D FOREGROUND \" "
34
+ ]
35
+ }
36
+ ],
37
+ "requiresCompatibilities": [ "FARGATE" ],
38
+ "cpu": "256",
39
+ "memory": "512"
40
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "family": "example",
3
+ "networkMode": "awsvpc",
4
+ "taskRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
5
+ "executionRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
6
+ "containerDefinitions": [
7
+ {
8
+ "name": "example",
9
+ "image": "public.ecr.aws/docker/library/httpd:latest",
10
+ "portMappings": [
11
+ {
12
+ "containerPort": 80,
13
+ "hostPort": 80,
14
+ "protocol": "tcp"
15
+ }
16
+ ],
17
+ "logConfiguration": {
18
+ "logDriver": "awslogs",
19
+ "options": {
20
+ "awslogs-create-group": "true",
21
+ "awslogs-group": "awslogs-group-1",
22
+ "awslogs-region": "us-east-1",
23
+ "awslogs-stream-prefix": "wco1-"
24
+ }
25
+ },
26
+ "essential": true,
27
+ "entryPoint": [
28
+ "sh",
29
+ "-c"
30
+ ],
31
+ "command": [
32
+ "/bin/sh -c \"echo '<html> <head> <title>Amazon ECS Sample App</title> <style>body {margin-top: 40px; background-color: #333;} </style> </head><body> <div style=color:white;text-align:center> <h1>Amazon ECS Sample App</h1> <h2>Congratulations!</h2> <p>Your application is now running on a container in Amazon ECS.</p> </div></body></html>' > /usr/local/apache2/htdocs/index.html && httpd-foreground\""
33
+ ]
34
+ }
35
+ ],
36
+ "requiresCompatibilities": [
37
+ "FARGATE"
38
+ ],
39
+ "cpu": "256",
40
+ "memory": "512"
41
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "containerDefinitions": [
3
+ {
4
+ "name": "wordpress",
5
+ "links": [
6
+ "mysql"
7
+ ],
8
+ "image": "wordpress",
9
+ "essential": true,
10
+ "portMappings": [
11
+ {
12
+ "containerPort": 80,
13
+ "hostPort": 80
14
+ }
15
+ ],
16
+ "logConfiguration": {
17
+ "logDriver": "awslogs",
18
+ "options": {
19
+ "awslogs-create-group": "true",
20
+ "awslogs-group": "awslogs-wordpress",
21
+ "awslogs-region": "us-west-2",
22
+ "awslogs-stream-prefix": "awslogs-example"
23
+ }
24
+ },
25
+ "memory": 500,
26
+ "cpu": 10
27
+ },
28
+ {
29
+ "environment": [
30
+ {
31
+ "name": "MYSQL_ROOT_PASSWORD",
32
+ "value": "password"
33
+ }
34
+ ],
35
+ "name": "mysql",
36
+ "image": "mysql",
37
+ "cpu": 10,
38
+ "memory": 500,
39
+ "essential": true,
40
+ "logConfiguration": {
41
+ "logDriver": "awslogs",
42
+ "options": {
43
+ "awslogs-create-group": "true",
44
+ "awslogs-group": "awslogs-mysql",
45
+ "awslogs-region": "us-west-2",
46
+ "awslogs-stream-prefix": "awslogs-example",
47
+ "mode": "non-blocking",
48
+ "max-buffer-size": "25m"
49
+ }
50
+ }
51
+ }
52
+ ],
53
+ "family": "awslogs-example"
54
+ }
@@ -0,0 +1,40 @@
1
+
2
+ {
3
+ "family": "helloworld",
4
+ "networkMode": "awsvpc",
5
+ "taskRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
6
+ "executionRoleArn": "arn:aws:iam::831556125887:role/ecs_role_1",
7
+ "containerDefinitions": [
8
+ {
9
+ "name": "helloworld",
10
+ "image": "piousbox/php82:0.0.2",
11
+ "portMappings": [
12
+ {
13
+ "containerPort": 80,
14
+ "hostPort": 80,
15
+ "protocol": "tcp"
16
+ }
17
+ ],
18
+ "logConfiguration": {
19
+ "logDriver": "awslogs",
20
+ "options": {
21
+ "awslogs-create-group": "true",
22
+ "awslogs-group": "awslogs-group-1",
23
+ "awslogs-region": "us-east-1",
24
+ "awslogs-stream-prefix": "wco1-"
25
+ }
26
+ },
27
+ "essential": true,
28
+ "entryPoint": [
29
+ "sh",
30
+ "-c"
31
+ ],
32
+ "command": [
33
+ "/bin/sh -c \"cd /var/www/html && wget https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2024/03/28014630/helloworld-0.0.1.zip && unzip helloworld-0.0.1.zip && apachectl -D FOREGROUND \" "
34
+ ]
35
+ }
36
+ ],
37
+ "requiresCompatibilities": [ "FARGATE" ],
38
+ "cpu": "256",
39
+ "memory": "512"
40
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wco_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.147
4
+ version: 3.1.0.149
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Pudeyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-s3
@@ -475,8 +475,11 @@ files:
475
475
  - app/models/wco_hosting/appliance_tmpl.rb
476
476
  - app/models/wco_hosting/domain.rb
477
477
  - app/models/wco_hosting/environment.rb
478
+ - app/models/wco_hosting/runner.rb
478
479
  - app/models/wco_hosting/serverhost.rb
479
480
  - app/models/wco_hosting/subdomain.rb
481
+ - app/models/wco_hosting/task.rb
482
+ - app/models/wco_hosting/task_tmpl.rb
480
483
  - app/views/layouts/wco/application.haml
481
484
  - app/views/wco/_alerts_notices.haml
482
485
  - app/views/wco/_analytics.erb
@@ -574,7 +577,11 @@ files:
574
577
  - app/views/wco/products/new.haml
575
578
  - app/views/wco/products/show.haml
576
579
  - app/views/wco/products/show.jbuilder
580
+ - app/views/wco/profiles/_form.haml
577
581
  - app/views/wco/profiles/_form_extra.haml
582
+ - app/views/wco/profiles/_header.haml
583
+ - app/views/wco/profiles/edit.haml
584
+ - app/views/wco/profiles/index.haml
578
585
  - app/views/wco/publishers/_form.haml
579
586
  - app/views/wco/publishers/_header.haml
580
587
  - app/views/wco/publishers/edit.haml
@@ -638,9 +645,15 @@ files:
638
645
  - app/views/wco_email/email_layouts/_test_tracking_footer.haml
639
646
  - app/views/wco_email/email_layouts/_wasyaco_roundborders.html.erb
640
647
  - app/views/wco_hosting/docker-compose/dc-any.erb
641
- - app/views/wco_hosting/docker-compose/dc-helloworld.erb
642
- - app/views/wco_hosting/docker-compose/dc-react.erb
643
- - app/views/wco_hosting/docker-compose/dc-wordpress.erb
648
+ - app/views/wco_hosting/docker-compose/trash/dc-helloworld.erb
649
+ - app/views/wco_hosting/docker-compose/trash/dc-react.erb
650
+ - app/views/wco_hosting/docker-compose/trash/dc-wordpress.erb
651
+ - app/views/wco_hosting/ecs_task_definitions/demmitv.json
652
+ - app/views/wco_hosting/ecs_task_definitions/demmitv_drupal_ecs1-0.0.0.zip
653
+ - app/views/wco_hosting/ecs_task_definitions/drupal.json-template
654
+ - app/views/wco_hosting/ecs_task_definitions/example1.json
655
+ - app/views/wco_hosting/ecs_task_definitions/example2.txt-trash
656
+ - app/views/wco_hosting/ecs_task_definitions/hw1.json
644
657
  - app/views/wco_hosting/scripts/create_volume.erb
645
658
  - app/views/wco_hosting/scripts/nginx_site.conf.erb
646
659
  - config/initializers/assets.rb