# Svelte + Appwrite = 🚀 Blazing fast development with done backend and fully-prepared frontend. CMS ready! ## Appwrite installation [Appwrite installation](https://appwrite.io/docs/installation) ## Frontend included * tailwind * scss * css reset * typescript * routing * ready routes * oauth * folder structure * common components * service worker * path aliases * database realtime subscribers * i18n * cms * cms forms components * vite * prettier * editorconfig * icons: [Bootstrap icons](https://icons.getbootstrap.com/) ## Database subscribers ```svelte {#if $loading}

Loading...

{:else} {#each [...$subscriber, ...$insertSubscriber] as item}

{item.name}

{/each} {/if}
``` ## Routing ```svelte
{#if !$isLoading} About us {/if}
``` ## Social auth ```svelte ``` ## i18n Locale file `src/locales/en.json` ```json { "page": { "home": { "title": "Homepage" } } } ``` ```svelte

{$_('page.home.title')}

Change language:

``` ## path aliases `$lib` = `src/lib` `$root` = `/` `$src` = `src` `$cms` = `cms` ## commands ```bash npm run dev ``` ```bash npm run build ``` ```bash npm run preview ``` ```bash npm run appwrite ```