-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
98 lines (81 loc) · 2.96 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
baseURL = "https://sound.town"
languageCode = "id-ID"
defaultContentLanguage = "id"
title = "SoundTown"
summaryLength = 10
RelativeURLs = true
CanonifyURLs = true
enableRobotsTXT = true
enableEmoji = true
paginate = 8
enableGitInfo = true
pygmentsCodefences = true
pygmentsUseClasses = true
[params]
author = "Michael Kochell"
site_name = "SoundTown"
description = "SoundTown is an online music collaboration platform, focused on iterating on small ideas into big ideas. Create a workspace for your band, community, or to manage your clients. Communicate across groups/teams of people, upload project files, and comment/trim audio files to share ideas."
locale = "en-US"
type = "website"
primary_color = "#30B561" # Green Color
landing_title = "Online Music Collaboration Platform"
landing_description = "Streamline your music creation process"
background_image = "/assets/images/bg.webp"
learn_more_url = "#"
try_now_url = "https://soundtown.app"
log_in_url = "https://soundtown.app/login"
app_image_on_desktop = "/assets/images/app.webp"
app_image_on_mobile = "/assets/images/app-mobile.webp"
about = "SoundTown is an online music collaboration platform, focused on iterating on small ideas into big ideas. Create a workspace for your band, community, or to manage your clients. Communicate across groups/teams of people, upload project files, and comment/trim audio files to share ideas."
testimonials = [
# [
# 'Photo Url',
# 'Name',
# 'Testimonial'
# ],
[
'https://assets.sound.town/jimmy.jpg',
'Jimmy Miller',
"I love how all the text that I write on my posts is queryable. I can search and find my tags so easily. It's fun to collaborate on music creations with my friends."
],
[
'https://assets.sound.town/jimmy.jpg',
'Andrew Roembke',
"It's like discord but for musicians"
]
]
contact_us_url = "#"
privacy_url = "#"
terms_url = "#"
help_url = "#"
[deployment]
# By default, files are uploaded in an arbitrary order.
# Files that match the regular expressions in the "Order" list
# will be uploaded first, in the listed order.
order = [".jpg$", ".gif$"]
[[deployment.targets]]
name = "development"
URL = "s3://dev.sound.town?region=us-east-1"
[[deployment.targets]]
name = "production"
URL = "s3://sound.town?region=us-east-1"
# If you are using a CloudFront CDN, deploy will invalidate the cache as needed.
# cloudFrontDistributionID = <ID>
[[deployment.matchers]]
# Cache static assets for 1 year.
pattern = "^.+\\.(js|css|svg|ttf)$"
cacheControl = "max-age=31536000, no-transform, public"
gzip = true
[[deployment.matchers]]
pattern = "^.+\\.(png|jpg)$"
cacheControl = "max-age=31536000, no-transform, public"
gzip = false
[[deployment.matchers]]
# Set custom content type for /sitemap.xml
pattern = "^sitemap\\.xml$"
contentType = "application/xml"
gzip = true
[[deployment.matchers]]
pattern = "^.+\\.(html|xml|json)$"
cacheControl = "no-cache no-store must-revalidate"
gzip = true