|
| 1 | += Installing {productname} using the {cloudname} |
| 2 | +:navtitle: Cloud |
| 3 | +:description: Get started with TinyMCE using the Tiny Cloud CDN - the fastest way to get {productname} up and running. |
| 4 | +:keywords: tinymce cloud, cdn, cloud hosting |
| 5 | + |
| 6 | +== Quick start |
| 7 | + |
| 8 | +The easiest way to get started with {productname} is using the {cloudname}. Simply include the TinyMCE script in your HTML: |
| 9 | + |
| 10 | +[source,html] |
| 11 | +---- |
| 12 | +<!DOCTYPE html> |
| 13 | +<html lang="en"> |
| 14 | + <head> |
| 15 | + <script src="{cdnurl}"></script> |
| 16 | + </head> |
| 17 | + <body> |
| 18 | + <textarea id="mytextarea"></textarea> |
| 19 | + <script> |
| 20 | + tinymce.init({ |
| 21 | + selector: '#mytextarea' |
| 22 | + }); |
| 23 | + </script> |
| 24 | + </body> |
| 25 | +</html> |
| 26 | +---- |
| 27 | + |
| 28 | +== Framework integrations |
| 29 | + |
| 30 | +Get started with {productname} in your preferred framework: |
| 31 | + |
| 32 | +++++ |
| 33 | +include::partial$css/installation-cards.css[] |
| 34 | +<div class="framework-cards"> |
| 35 | + <div class="framework-grid"> |
| 36 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/cloud-quick-start/" class="framework-card-link"> |
| 37 | + <div class="framework-card"> |
| 38 | + <div class="framework-icon">⚡</div> |
| 39 | + <h3 class="framework-name">Quick start</h3> |
| 40 | + </div> |
| 41 | + </a> |
| 42 | + |
| 43 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/react-cloud/" class="framework-card-link"> |
| 44 | + <div class="framework-card"> |
| 45 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/react-color.svg" alt="React"></div> |
| 46 | + <h3 class="framework-name">React</h3> |
| 47 | + </div> |
| 48 | + </a> |
| 49 | + |
| 50 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/angular-cloud/" class="framework-card-link"> |
| 51 | + <div class="framework-card"> |
| 52 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/angular-color.svg" alt="Angular"></div> |
| 53 | + <h3 class="framework-name">Angular</h3> |
| 54 | + </div> |
| 55 | + </a> |
| 56 | + |
| 57 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/vue-cloud/" class="framework-card-link"> |
| 58 | + <div class="framework-card"> |
| 59 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/vue-color.svg" alt="Vue"></div> |
| 60 | + <h3 class="framework-name">Vue.js</h3> |
| 61 | + </div> |
| 62 | + </a> |
| 63 | + |
| 64 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/blazor-cloud/" class="framework-card-link"> |
| 65 | + <div class="framework-card"> |
| 66 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/blazor-color.svg" alt="Blazor"></div> |
| 67 | + <h3 class="framework-name">Blazor</h3> |
| 68 | + </div> |
| 69 | + </a> |
| 70 | + |
| 71 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/svelte-cloud/" class="framework-card-link"> |
| 72 | + <div class="framework-card"> |
| 73 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/svelte-color.svg" alt="Svelte"></div> |
| 74 | + <h3 class="framework-name">Svelte</h3> |
| 75 | + </div> |
| 76 | + </a> |
| 77 | + |
| 78 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/webcomponent-cloud/" class="framework-card-link"> |
| 79 | + <div class="framework-card"> |
| 80 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/web-components-color.svg" alt="Web Components"></div> |
| 81 | + <h3 class="framework-name">Web Component</h3> |
| 82 | + </div> |
| 83 | + </a> |
| 84 | + |
| 85 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/jquery-cloud/" class="framework-card-link"> |
| 86 | + <div class="framework-card"> |
| 87 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/jquery-color.svg" alt="jQuery"></div> |
| 88 | + <h3 class="framework-name">jQuery</h3> |
| 89 | + </div> |
| 90 | + </a> |
| 91 | + |
| 92 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/bootstrap-cloud/" class="framework-card-link"> |
| 93 | + <div class="framework-card"> |
| 94 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/bootstrap-color.svg" alt="Bootstrap"></div> |
| 95 | + <h3 class="framework-name">Bootstrap</h3> |
| 96 | + </div> |
| 97 | + </a> |
| 98 | + |
| 99 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/django-cloud/" class="framework-card-link"> |
| 100 | + <div class="framework-card"> |
| 101 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/django-color.svg" alt="Django"></div> |
| 102 | + <h3 class="framework-name">Django</h3> |
| 103 | + </div> |
| 104 | + </a> |
| 105 | + |
| 106 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/laravel-tiny-cloud/" class="framework-card-link"> |
| 107 | + <div class="framework-card"> |
| 108 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/laravel-color.svg" alt="Laravel"></div> |
| 109 | + <h3 class="framework-name">Laravel</h3> |
| 110 | + </div> |
| 111 | + </a> |
| 112 | + |
| 113 | + <a href="https://www.tiny.cloud/docs/tinymce/latest/rails-cloud/" class="framework-card-link"> |
| 114 | + <div class="framework-card"> |
| 115 | + <div class="framework-icon"><img src="https://www.tiny.cloud/images/homepage/integrations/rails-color.svg" alt="Rails"></div> |
| 116 | + <h3 class="framework-name">Ruby on Rails</h3> |
| 117 | + </div> |
| 118 | + </a> |
| 119 | + </div> |
| 120 | +</div> |
| 121 | +++++ |
| 122 | + |
| 123 | +== Benefits of the {cloudname} |
| 124 | + |
| 125 | +Using the {cloudname} provides several advantages: |
| 126 | + |
| 127 | +* **Zero configuration** - No server setup required |
| 128 | +* **Always up-to-date** - Access to the latest {productname} features automatically |
| 129 | +* **Global CDN** - Fast loading times worldwide |
| 130 | +* **Optimized assets** - Automatically minified and optimized for production |
| 131 | +* **Premium features** - Access to premium plugins with cloud API key |
| 132 | + |
| 133 | +include::partial$misc/admon-account-creation-and-social-option.adoc[] |
0 commit comments