1
0

atlas.config.yml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. general:
  2. appName: 'Atlas' # Application name - used in the copy throughout the app, in index.html, open graph meta tags, etc
  3. appDescription: 'The streaming platform empowering viewers, creators, and builders. Built on and operated by the Joystream blockchain and DAO.' # Application description - used in index.html meta tags
  4. appTagline: 'The streaming platform empowering viewers, creators, and builders. Built on and operated by the Joystream blockchain and DAO.'
  5. appTwitterId: '@JoystreamDAO' # Twitter handle for the app - used in open graph meta tags in HTML
  6. appUrl: 'https://play.joystream.org' # URL at which the app is hosted - used in open graph meta tags in HTML
  7. appGithubUrl: 'https://github.com/Joystream/atlas' # URL for Atlas GitHub repository - used in the footer
  8. appOgImgPath: '/og-image.webp' # Path to the open graph image - used in open graph meta tags in HTML
  9. pioneerMemberUrlPrefix: 'https://dao.joystream.org/#/members' # URL prefix for Pioneer member profile page - used to link to member details
  10. joystreamLandingPageUrl: 'https://www.joystream.org' # URL for Joystream landing page - used in the footer and in "Learn more" links
  11. joystreamDiscordUrl: 'https://discord.gg/DE9UN3YpRP' # URL for Joystream Discord - used for support when errors occur
  12. appContentFocus: null # Content focus of given app. Provide a string, for example `web & crypto` or `sport`
  13. storage:
  14. assetResponseTimeout: 20000 # Timeout for asset response in ms - after this timeout, different distributor will be tried
  15. assetUploadStatusPollingInterval: 2000 # Interval for polling asset upload status in ms - polling begins once asset is uploaded and is finished once QN reports the asset as accepted
  16. uploadProcessingTimeout: 60000 # Timeout for processing uploaded asset in ms - after this timeout, upload will be considered failed
  17. minimumDistributorRefetchTime: 1000 # Minimum time before refetching distributors list in ms - refetching is done if certain bag is not found on any distributor
  18. geolocationServiceUrl: '$VITE_GEOLOCATION_SERVICE_URL' # URL for geolocation service - used to determine user's location to find the closest distributor
  19. channelBagPrefix: 'dynamic:channel:' # Prefix for channel bag ID - used to create a unique bag ID for each channel
  20. uploadPath: 'api/v1/files' # Path to Storage Node upload endpoint
  21. assetPath: 'api/v1/assets' # Path to Distributor Node asset endpoint
  22. joystream:
  23. tokenTicker: 'JOY' # Ticker for the token used in the app
  24. tokenPriceFeedUrl: null # URL for the token price feed - used to display token price in the app
  25. alternativeNodes:
  26. - name: 'Jsgenesis (Europe/UK)'
  27. url: 'wss://testnet-rpc-3-uk.joystream.org'
  28. - name: 'Jsgenesis (US/East)'
  29. url: 'wss://testnet-rpc-1-us.joystream.org'
  30. - name: 'JoystreamStats.Live'
  31. url: 'wss://pl.joystreamstats.live/rpc'
  32. - name: 'Local'
  33. url: 'ws://localhost:9944'
  34. features:
  35. ypp:
  36. landingPageOgTitle: null # Open graph title for YPP landing page - used in open graph meta tags in HTML
  37. landingPageOgDescription: null # Open graph description for YPP landing page - used in open graph meta tags in HTML
  38. landingPageOgImgPath: null # Path to the open graph image for the YPP landing page - if not set, the default image will be used
  39. nft:
  40. auctionMinimumBidStepMultiplier: 0.02 # Multiplier for the auction's starting price used to determine auction's minimum bid step. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction
  41. openAuctionBidLockDuration: 300 # Number of blocks for which bids on open auctions are locked from withdrawal. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction-type
  42. englishAuctionExtensionPeriod: 5 # Number of blocks from the auction's end during which auction will be extended if a bid is placed. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction-type
  43. statusPollingInterval: 20000 # Interval for polling NFT status on VideoView in ms
  44. notifications:
  45. pollingInterval: 30000 # Interval for polling notifications in ms
  46. members:
  47. avatarServiceUrl: '$VITE_AVATAR_SERVICE_URL' # URL for avatar service - used to upload member's avatar
  48. hcaptchaSiteKey: '$VITE_HCAPTCHA_SITE_KEY' # Site key for hCaptcha - used to verify users are not bots when creating memberships - depends on hCaptcha being enabled in the faucet
  49. playback:
  50. playbackRates: [2, 1.5, 1.25, 1, 0.5, 0.25] # Playback rates available in the player
  51. comments:
  52. reactions: # List of allowed comment reactions
  53. - id: 1
  54. emoji: '👍'
  55. name: 'like'
  56. - id: 2
  57. emoji: '❤️'
  58. name: 'love'
  59. - id: 3
  60. emoji: '😂'
  61. name: 'laugh'
  62. - id: 4
  63. emoji: '🤯'
  64. name: 'shock'
  65. - id: 5
  66. emoji: '😠'
  67. name: 'anger'
  68. content:
  69. blockedDataObjectIds: [] # Array of data object IDs that should be blocked from being displayed in the app
  70. blockedVideoIds: [] # Array of video IDs that should be blocked from being displayed in the app
  71. blockedChannelIds: [] # Array of channel IDs that should be blocked from being displayed in the app
  72. officialJoystreamChannelId: null # ID of the official Joystream channel to display "Official Joystream updates" section on the homepage - can be set to null to disable this section
  73. categories: # List of display categories to be used in the app. Those are local to the application and are related to metaprotocol categories via 'videoCategories' array.
  74. - id: '1' # Local category ID
  75. name: 'Science & Technology' # Display name of the category
  76. color: '#D92E61' # Color used in the UI for this category
  77. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/science-and-technology.svg' # URL for category icon SVG
  78. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/science-and-technology.webp' # URL for category cover image
  79. videoCategories: ['254418-2'] # List of metaprotocol category IDs that should be included in this display category
  80. defaultVideoCategory: '254418-2'
  81. - id: '2'
  82. name: 'Pets & Animals'
  83. color: '#E7BE2D'
  84. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/pets-and-animals.svg'
  85. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/pets-and-animals.webp'
  86. videoCategories: ['254419-2']
  87. defaultVideoCategory: '254419-2'
  88. - id: '3'
  89. name: 'Film & Animation'
  90. color: '#BD4BE4'
  91. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/film-and-animation.svg'
  92. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/film-and-animation.webp'
  93. videoCategories: ['254420-2']
  94. defaultVideoCategory: '254420-2'
  95. - id: '4'
  96. name: 'People & Blogs'
  97. color: '#BDE933'
  98. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/people-and-blogs.svg'
  99. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/people-and-blogs.webp'
  100. videoCategories: ['254421-2']
  101. defaultVideoCategory: '254421-2'
  102. - id: '5'
  103. name: 'Entertainment'
  104. color: '#54A7F0'
  105. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/entertainment.svg'
  106. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/entertainment.webp'
  107. videoCategories: ['254422-2']
  108. defaultVideoCategory: '254422-2'
  109. - id: '6'
  110. name: 'Education'
  111. color: '#DD379D'
  112. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/education.svg'
  113. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/education.webp'
  114. videoCategories: ['254423-2']
  115. defaultVideoCategory: '254423-2'
  116. - id: '7'
  117. name: 'Travel & Events'
  118. color: '#5A7AEE'
  119. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/travel-and-events.svg'
  120. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/travel-and-events.webp'
  121. videoCategories: ['254424-2']
  122. defaultVideoCategory: '254424-2'
  123. - id: '8'
  124. name: 'Sports'
  125. color: '#41EE5A'
  126. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/sports.svg'
  127. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/sports.webp'
  128. videoCategories: ['254425-2']
  129. defaultVideoCategory: '254425-2'
  130. - id: '9'
  131. name: 'Gaming'
  132. color: '#9455E8'
  133. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/gaming.svg'
  134. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/gaming.webp'
  135. videoCategories: ['254426-2']
  136. defaultVideoCategory: '254426-2'
  137. - id: '10'
  138. name: 'Comedy'
  139. color: '#4FE1F2'
  140. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/comedy.svg'
  141. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/comedy.webp'
  142. videoCategories: ['254427-2']
  143. defaultVideoCategory: '254427-2'
  144. - id: '11'
  145. name: 'Autos & Vehicles'
  146. color: '#6E5FEC'
  147. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/autos-and-vehicles.svg'
  148. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/autos-and-vehicles.webp'
  149. videoCategories: ['254428-2']
  150. defaultVideoCategory: '254428-2'
  151. - id: '12'
  152. name: 'Howto & Style'
  153. color: '#E57827'
  154. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/howto-and-style.svg'
  155. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/howto-and-style.webp'
  156. videoCategories: ['254429-2']
  157. defaultVideoCategory: '254429-2'
  158. - id: '13'
  159. name: 'Music'
  160. color: '#6EEC3A'
  161. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/music.svg'
  162. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/music.webp'
  163. videoCategories: ['254430-2']
  164. defaultVideoCategory: '254430-2'
  165. - id: '14'
  166. name: 'Nonprofits & Activism'
  167. color: '#E141D6'
  168. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/nonprofits-and-activism.svg'
  169. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/nonprofit-and-activism.webp'
  170. videoCategories: ['254431-2']
  171. defaultVideoCategory: '254431-2'
  172. - id: '15'
  173. name: 'News & Politics'
  174. color: '#48F0B3'
  175. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/news-and-politics.svg'
  176. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/news-and-politics.webp'
  177. videoCategories: ['254432-2']
  178. defaultVideoCategory: '254432-2'
  179. showAllContent: true # With this disabled, Atlas will display only content from display categories defined above. If you want your app to display all Joystream content, set this to true.
  180. languages: # List of languages to be used in the app. Those will be used when setting video's language, for adding subtitles, etc.
  181. - isoCode: ar
  182. name: Arabic
  183. - isoCode: zh
  184. name: Chinese
  185. - isoCode: en
  186. name: English
  187. - isoCode: fr
  188. name: French
  189. - isoCode: de
  190. name: German
  191. - isoCode: ja
  192. name: Japanese
  193. - isoCode: ms
  194. name: Malay
  195. - isoCode: pt
  196. name: Portuguese
  197. - isoCode: ru
  198. name: Russian
  199. - isoCode: st
  200. name: Spanish
  201. - isoCode: am
  202. name: Amharic
  203. - isoCode: bn
  204. name: Bengali
  205. - isoCode: bg
  206. name: Bulgarian
  207. - isoCode: hr
  208. name: Croatian
  209. - isoCode: cs
  210. name: Czech
  211. - isoCode: da
  212. name: Danish
  213. - isoCode: dv
  214. name: Dutch
  215. - isoCode: et
  216. name: Estonian
  217. - isoCode: fj
  218. name: Filipino
  219. - isoCode: fi
  220. name: Finnish
  221. - isoCode: el
  222. name: Greek
  223. - isoCode: ha
  224. name: Hausa
  225. - isoCode: he
  226. name: Hebrew
  227. - isoCode: hu
  228. name: Hungarian
  229. - isoCode: ga
  230. name: Irish
  231. - isoCode: it
  232. name: Italian
  233. - isoCode: ko
  234. name: Korean
  235. - isoCode: lo
  236. name: Lao
  237. - isoCode: lv
  238. name: Latvian
  239. - isoCode: lt
  240. name: Lithuanian
  241. - isoCode: mt
  242. name: Maltese
  243. - isoCode: pl
  244. name: Polish
  245. - isoCode: pa
  246. name: Punjabi
  247. - isoCode: qu
  248. name: Romanian
  249. - isoCode: sk
  250. name: Slovak
  251. - isoCode: sl
  252. name: Slovenian
  253. - isoCode: sw
  254. name: Swahili
  255. - isoCode: sv
  256. name: Swedish
  257. - isoCode: ta
  258. name: Tamil
  259. - isoCode: th
  260. name: Thai
  261. - isoCode: tr
  262. name: Turkish
  263. - isoCode: ur
  264. name: Urdu
  265. - isoCode: vi
  266. name: Vietnamese
  267. - isoCode: yo
  268. name: Yoruba
  269. popularLanguages: ['en', 'ar', 'zh', 'fr', 'de', 'ja', 'ms', 'pt', 'ru', 'st']
  270. analytics:
  271. assetLogs: # Asset logs are used to track distributors performance
  272. url: '$VITE_ASSET_LOGS_URL'
  273. sentry: # Sentry can be used for capturing errors and logs from the app
  274. dsn: '$VITE_SENTRY_DSN' # Sentry DSN
  275. livesession: # Livesession can be used for user session recording
  276. id: '$VITE_LIVESESSION_ID'
  277. rootHostname: '$VITE_LIVESESSION_ROOT_HOSTNAME'
  278. usersnap: # Usersnap can be used to capture user feedback
  279. id: '$VITE_USERSNAP_ID'
  280. legal:
  281. termsOfService: |
  282. # Terms of Service
  283. Last updated on the 4th of May 2021
  284. This Terms of Service ("Agreement") is a binding obligation between you ("User") and Jsgenesis AS ("Company", "We", "Us", "Our") for use of our Joystream Player interface ("Atlas") hosted at play.joystream.org and all other products (collectively "Software") developed and published by Us.
  285. ## 1. Agreement to Terms
  286. By using Our Software, the User is agreeing to be bound by this Agreement. If you are acting on behalf of another company or an employer, you must have the rights to act on their behalf.
  287. ## 2. Changes to Terms
  288. This Agreement may be modified or updated at the sole discretion of Company without notice. Your continued use of our Software is confirmation of your acceptance of the latest Agreement.
  289. ## 3. Privacy Policy
  290. Please see our Privacy Policy (https://www.joystream.org/privacy-policy/) for information regarding privacy.
  291. ## 4. Membership
  292. By generating private/public cryptographic keys ("Keys") or applying for a membership account ("Membership"), you accept the risk of losing access to your Keys and Membership. Reasons include, but are not limited to:
  293. - Losing passwords
  294. - Losing recovery seeds or mnemonics
  295. - Deleting accounts and backups
  296. - Security breaches
  297. Under no circumstance will Company take any responsibility for loss resulting from losing access to Membership or Keys.
  298. ## 5. User Conduct
  299. By using Our Software, you agree to not state, write, link to, download, distribute, share or encourage other users to state, write, link to, download, distribute, share or encourage anything that:
  300. - breach or infringe any copyright or intellectual property of any third party.
  301. - is abusive, malicious, threatening or unlawful in any way.
  302. Company has not reviewed all content published on our services, and is not responsible for content submitted or provided by individuals or groups not directly tied to them.
  303. ## 6. Responsibilities and Risks
  304. In no event shall Company, its contractors, employees or owners be liable for any damage or loss of any kind to User arising out of the use or inability to use any Software made by Company. In no event shall Company, its contractors, employees or owners be liable for any damage or loss of any kind to User resulting of clicking links, following guides, using software or doing anything else recommended by Company.
  305. ## 7. Content Takedown Policy
  306. Jsgenesis has established a policy for content takedowns in accordance with the Digital Millennium Copyright Act (DMCA) which can be viewed at https://play.joystream.org/legal/copyright.
  307. ## 8. Governing Law
  308. These terms and conditions are governed by and construed in accordance with the laws of Norway.
  309. copyrightPolicy: |
  310. # DMCA Policy For Content Takedown
  311. Jsgenesis AS, the developers of the Joystream protocol, have established a copyright infringement policy in accordance with the Digital Millennium Copyright Act.
  312. Copyright owners and their agents may notify us in cases where content hosted on our testnets (available publicly at https://play.joystream.org and https://testnet.joystream.org) infringes on their copyrights by sending a DMCA notice to us using the contact information below.
  313. Upon receipt of a valid and complete notice, we will remove the content from our public-facing applications as quickly as possible. We may also suspend the ability of the uploader to participate further on our testnet.
  314. Where possible, we will attempt to notify the alleged infringer of the takedown, with a copy of your DMCA Notice, using the contact information provided to us.
  315. You can be held liable for damages, including costs and attorney fees, if you materially misrepresent that material or activity infringes on your copyright.
  316. # Requirements for DMCA Notices
  317. Your DMCA Notice must include all of the following information:
  318. - A physical or electronic signature of the copyright owner, or a person authorized to act on behalf of the copyright owner;
  319. - Identification (URL) of the copyrighted work or material being infringed upon;
  320. - Description of the work or material that you claim to be infringing and would like to be removed, including information regarding its location (URL) with enough detail so that we can and verify it;
  321. - Your full legal name, mailing address, telephone number, and email address where we can contact you;
  322. - A statement that you have a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and
  323. - A statement that the information in your DMCA Notice is accurate, and under penalty of perjury, that you are the copyright owner or are authorized to act on behalf of the copyright owner.
  324. # DMCA Agent Information
  325. Our dedicated email address for DMCA notifications is: abuse@jsgenesis.com.
  326. Alternatively you can contact us by post:
  327. Designated DMCA Agent Jsgenesis AS
  328. CO UMA Workspace Stenersgata 8
  329. Oslo, 0184 Norway
  330. Or by telephone: **+44789553019**
  331. # DMCA Counter Notification
  332. If your content has been mistakenly removed from our testnet, you can submit a DMCA Counter Notification using
  333. the same contact information shown above.
  334. Your DMCA Counter Notification must include all of the following information:
  335. - Your physical or electronic signature;
  336. - Identification (URL) of the material that has been removed or to which access has been disabled and the location at which the material appeared before it was removed or access to it was disabled (the description from the DMCA Notice is acceptable);
  337. - A statement under penalty of perjury that you have a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled;
  338. - Your full legal name, mailing address, telephone number, and email address where we can contact you; and
  339. - A statement that you consent to the jurisdiction of Federal District Court for the judicial district in which your address is located, or if your address is outside of the United States, for any judicial district in which Jsgenesis may be found, and that you will accept service of process from the person who provided the DMCA Notice or an agent of such person.
  340. If we receive valid DMCA Counter Notification that meets the above requirements, we will forward a copy to the
  341. person who filed the original DMCA Notice. If we do not receive notice within 10 business days that the person
  342. who submitted the DMCA Notice is seeking a court order to prevent the infringement of the content at issue, we
  343. will replace or re-enable access to the content that was removed.
  344. # Content Licenses Supported By Joystream Platform
  345. 1. Joystream Standard License
  346. Joystream Standard License is the default setting for all uploads. It allows creators to retain all ownership over their content, which published on Joystream network storage nodes, while giving any App built and operated by JS Genesis, Joystream DAO or external operators that work with Joystream Blockchain to broadcast this content.
  347. For content automatically synced from Youtube via Youtube Partnership Programme, YouTube Standard License is substituted by Joystream Standard License.
  348. 2. CCO
  349. The CC0 (Public Domain Dedication) License allows creators to waive all rights to their creations and release them into the Public Domain
  350. For the synced videos with Creative Commons License, Auto-sync service assigns CCO license, explained below.
  351. More information can be found following _this link_ [https://creativecommons.org/share-your-work/public-domain/cc0]
  352. 3. Custom License
  353. Joystream channel operator may choose to add custom license to the uploaded content.
  354. 4. Other Licenses
  355. Other licenses supported by Joystream are:
  356. - PDM - Public Domain - For items which are not protected by copyright. This is not a license, but rather a copyright status. Some government-produced works, items with expired copyrights, and those which are ineligible for copyright protection may be included in this category.
  357. - CC BY - Creative Commons Attribution License - Sharing and adapting this content is permitted, but attribution must be provided. Read the License Deed for more information.
  358. - CC_BY_SA - Creative Commons Attribution-ShareAlike License - Sharing and adapting this content is permitted, but attribution must be provided. Any derivative works must be distributed under the same license. Read the License Deed for more information.
  359. - CC_BY_ND - Creative Commons Attribution-NoDerivs License - Sharing this content is permitted, but attribution must be provided. You may not remix, transform, or build upon the material. Read the License Deed for more information.
  360. - CC_BY_NC - Creative Commons Attribution-NonCommercial License. Sharing and adapting this content is permitted, but attribution must be provided. Commercial use is not permitted. Read the License Deed for more information.
  361. - CC_BY_NC_SA - Creative Commons Attribution-NonCommercial-ShareAlike License - Sharing and adapting this content is permitted, but attribution must be provided. Any derivative works must be distributed under the same license. Commercial use is not permitted. Read the License Deed for more information.
  362. - CC_BY_NC_ND - Creative Commons Attribution-NonCommercial-NoDerivs License. Sharing this content is permitted, but attribution must be provided. You may not remix, transform, or build upon the material. Commercial use is not permitted. Read the License Deed for more information.
  363. 5. License Config File
  364. Licenses supported may be updated at any time and full set of licenses that are available for selection in the App upon video upload or uploaded via Command Line interface are contained in this file: https://github.com/Joystream/atlas/blob/master/packages/atlas/src/data/knownLicenses.json
  365. privacyPolicy: |
  366. # 1. Privacy Policy
  367. Last updated on the 23rd of February 2022
  368. ## 1.1 Agreement to the Policy
  369. By using any of Our Software, the User are accepting this Privacy Policy. If you are acting on behalf of another company or an employer, you must have the rights to act on their behalf. The Privacy Policy is not extended to any of our newsletters, where Users are bound by the privacy policy of Mailchimp
  370. The Privacy Policy does not apply to any other third party services including, but not limited to, applications, websites, tools or software, even if accessible through links or guides in our Software.
  371. ## 1.2 Changes to Policy
  372. This Privacy Policy may be changed at the sole discretion of Company. If any material changes are made, the User will be notified in the Service that is used. Note that adding new products to be included in the term Software, e.g. a new User facing product replacing the App or a new tool for uploading Content, is not considered material as it will not affect Users unless they adopt the new product. Changing software names, terminology used in this Privacy Policy, and changing link locations are also examples of non-material changes.
  373. ## 1.3 Information colleted
  374. All data written to the Blockchain, is implicitly collected not only by Company, but also anyone else in the world that is running the Full Node locally, or accessed via the App or a third party. This includes, but is not limited to, Content hashes, Membership profile, Memo field, and any other way a User can record data on the Blockchain. ‍
  375. When using the faucet subpage of the Website, Company will record the IP address behind every new request for tokens. This data will be deleted every 14 days.
  376. Company uses Google Analytics, with IP anonymization, to collect statistics on Website and the version of App hosted by us. All customisable data sharing settings are turned off to improve the privacy of Users.
  377. Company also uses Livesession to help us find bugs, improve UX and more by using session replays. Sensitive data such as passwords and IP addresses are anonymized.
  378. Company will not sell your data for advertising, or other purposes.
  379. # 2. Cookies Policy
  380. ## 2.1 What are Cookies?
  381. Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows the Service or a third-party to recognise you and make your next visit easier and the Service more useful to you.
  382. Cookies can be persistent or session cookies.
  383. ## 2.2 How we use Cookies
  384. We use cookies for the following purposes our Service:
  385. - Provide Analytics
  386. - Store preferences
  387. - Persistant local storage of Keys and Membership.
  388. ## 2.3 Third-party Cookies
  389. In addition to our own cookies, we also use various third-party cookies to report usage statistics of the Service, deliver advertisements on and through the Service, and so on. They include:
  390. - Google Analytics
  391. - Mailchimp (Only when signing up for any of our newsletters)
  392. - Godaddy
  393. Please see Item 3. of the Privacy Policy for more information on the extent of these providers.
  394. ## 2.4 Regarding Your Cookies
  395. If you would like to delete cookies or instruct your web browser to delete or refuse cookies, please visit the help pages of your web browser.
  396. Please note, however, that if you delete cookies or refuse to accept them, you might not be able to use all of the features we offer, you may not be able to store your preferences, and some of our pages might not display properly.