# The manifest for the "{{.Name}}" service. # Read the full specification for the "{{.Type}}" type at: # https://aws.github.io/copilot-cli/docs/manifest/static-site/ # Your service name will be used in naming your resources like S3 buckets, etc. name: {{.Name}} type: {{.Type}} {{- if not .FileUploads}} files: - source: ./ exclude: - copilot/ {{- else}} files: {{- range $file := .FileUploads}} - source: {{$file.Source}} {{- if $file.Recursive}} recursive: {{$file.Recursive}} {{- end}} {{- end}} {{- end}} # You can override any of the values defined above by environment. # environments: # test: # files: # - source: './blob' # recursive: true # destination: 'assets' # exclude: '*' # reinclude: # - '*.txt' # - '*.png'