• Stars
    star
    1,258
  • Rank 36,044 (Top 0.8 %)
  • Language Svelte
  • License
    MIT License
  • Created about 1 year ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A SvelteKit template for building CMS-free editable websites

editable-website

A SvelteKit template for coding completely custom websites, while allowing non-technical people to make edits to the content by simply logging in with a secure admin password.

Check out the demo at editable.website.

See it out in the wild at sonjastojanovic.com, nisse.tech, michaelaufreiter.com, postowl.com and officegallery.cz.

Read the discussion on Hackernews.

Editable Website won the 2nd price in the SvelteHack 2023. ๐Ÿฅณ We still can't believe it. Big thanks to the Svelte Society and congrats to the other winners, and everyone who participated. ๐Ÿ™ So many inspiring projects!

But why?

It's a dynamic website but light as a feather compared to building on top of a CMS. It makes editing content self-explanatory for end-users.

Step 0 - Requirements

  • Node.js 18+
  • SQLite3

These are needed to run the example as is, but you can choose any other database and file storage solution.

Step 1 - Development setup

This is a full-fledged web app you want to adjust to your own needs. So please create a copy or fork of the source code and rename the project accordingly.

Copy the contents of .env.example into .env and adjust to your needs.

DB_PATH=./data/db.sqlite3
ADMIN_PASSWORD=xxxxxxxxxxxx
ORIGIN=http://localhost:5173

Seed the database:

sqlite3 data/db.sqlite3 < sql/schema.sql

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

To create and test a production version of your app:

npm run build

You can preview the production build with npm run preview.

Making changes to your website

You can literally do everything that SvelteKit allows you to do. Below is the source code for the /imprint page, which has a <PlainText> title and <RichText> content.

<svelte:head>
  <title>Imprint</title>
</svelte:head>

{#if showUserMenu}
  <Modal on:close={() => (showUserMenu = false)}>
    <div class="w-full flex flex-col space-y-4 p-4 sm:p-6">
      <PrimaryButton on:click={toggleEdit}>Edit page</PrimaryButton>
      <LoginMenu {currentUser} />
    </div>
  </Modal>
{/if}

{#if editable}
  <EditorToolbar on:cancel={initOrReset} on:save={savePage} />
{/if}

<WebsiteNav bind:showUserMenu {currentUser} bind:editable />

<div class="py-12 sm:py-24">
  <div class="max-w-screen-md mx-auto px-6 md:text-xl">
    <h1 class="text-4xl md:text-7xl font-bold pb-8">
      <PlainText {editable} bind:content={title} />
    </h1>
    <div class="prose md:prose-xl pb-12 sm:pb-24">
      <RichText multiLine {editable} bind:content={imprint} />
    </div>
  </div>
</div>

<Footer counter="/imprint" />

To see the full picture, open src/routes/imprint/+page.svelte and src/routes/imprint/+page.server.js.

Please use this as a starting point for new pages you want to add to your website. editable-website is not a widget-library on purpose. Instead you are encouraged to inspect and adjust all source code, including the schema for the editors. I want you to be in control of everything. No behind-the-scene magic.

Making changes to the content

Just navigate to http://127.0.0.1:5173/login and enter your secure admin password (ADMIN_PASSWORD). Now you see an additional ellipsis menu, which will provide you an "Edit page" or "Edit post" option for all pages that you have set up as "editable".

Deployment to Fly.io

This repo contains the files you need to deploy your site to fly.io.

  1. Create an account with fly.io. (Fly require an active, valid credit / bank card to prevent abuse, but the site runs well on their free tier. Unless you have a very busy site, hosting will be free.)
  2. Install fly and sign in with fly auth login
  3. Clone this repo to a directory on your computer
  4. Enter the directory you cloned the repo to: cd myapp
  5. Run fly apps create
    1. Enter a name for your application at the prompt (e.g. myapp)
    2. Choose a Fly organization to deploy to
  6. Copy the contents from fly.toml.example to fly.toml and adjust to your needs. You have to change app = "myapp" and source = "myapp_data" to the app name you provided earlier.
  7. Run fly deploy as shown below. Substitute your own values for the secrets and make sure to replace all instances of myapp with the name you chose when creating the application above:
fly deploy \
    --build-secret DB_PATH="./data/db.sqlite3" \
    --build-secret ADMIN_PASSWORD="your-super-secret-admin-password" \
    --build-secret ORIGIN="https://myapp.fly.dev"

The -a option in fly deploy lets you override the app name specified in fly.toml.

Fly will let you know when the app is deployed. Visit the URL shown in your terminal and sign in at /login with the ADMIN_PASSWORD you set above.

Connect a domain to your Fly.io app

  • Run fly ips list -a myapp to get the IPv4 and IPv6 addresses.
  • Head over to your DNS provider and add A and AAAA records for myapp.com with the IPv4 and IPv6 values.
  • Run fly certs create -a myapp myapp.com
  • Run fly certs show -a myapp myapp.com to watch your certificates being issued.

Fly.io Backups

You can pull a backup locally and run it to check if it is valid. That's also quite useful for developing/testing against the latest production data. For the best experience, keep your database small. ;)

  1. Make a snapshot remotely
    • fly ssh console
    • sqlite3 data/db.sqlite3 ".backup data/backup-db.sqlite3"
    • sqlite3 data/backup-db.sqlite3 "PRAGMA integrity_check;" (optional integrity check)
    • Exit the remote console (CTRL+D)
  2. Download the database and test it with your local instance
    • rm -rf data/db.* (careful, this wipe the database files locally)
    • fly sftp get data/db.sqlite3 data/db.sqlite3 (and puts the downloaded backup in place)

To restore a backup in production, you need to be a bit careful and follow these steps (your site could be down for a few minutes during the restore).

  1. Make sure nobody writes to the app
  2. Make a backup remotely (in case something goes wrong)
    • fly ssh console
    • sqlite3 data/db.sqlite3 ".backup data/backup-db.sqlite3"
    • sqlite3 data/backup-db.sqlite3 "PRAGMA integrity_check;" (optional integrity check)
    • rm -rf data/db.* (this removes the current database files, not the backup)
    • Exit the remote console (CTRL+D)
  3. Copy your local db.sqlite3 file to production using SFTP
    • sqlite3 data/db.sqlite3 ".backup data/backup-db.sqlite3"
    • rm -rf data/db*
    • mv data/backup-db.sqlite3 data/db.sqlite3 (the first 3 commands make sure db.sqlite3 has the very latest state)
    • fly sftp shell
    • cd app/data
    • put data/db.sqlite3
    • Exit SFTP client (CTRL+D)
  4. Restart the app (so that the new DB gets picked up)
    • fly apps restart

Get in touch

If you have questions or need help (with development or deployment), please email me at [email protected].

Examples

Community provided examples of additional features you can add to your editable website:

More Repositories

1

multiselect

jQuery UI Multiselect Widget
JavaScript
557
star
2

dance

Don't be shy - take your data for a dance.
JavaScript
262
star
3

unveil

A data-driven visualization toolkit
JavaScript
237
star
4

ken-rb

A Ruby API for accessing Freebase. It wraps the Metaweb Architecture to smart Ruby Objects.
Ruby
136
star
5

askken

Visual Knowledge Browser
JavaScript
116
star
6

donut

Radial Navigator built with Processing.js
JavaScript
73
star
7

dejavis

Visual Analytics for the Browser
JavaScript
49
star
8

tween

Motion Tweening for Processing.js
JavaScript
37
star
9

dejavis-sandbox

A sandbox for pluggable data visualizations
JavaScript
34
star
10

ken-browser

Visual Knowledge Browser
JavaScript
32
star
11

reader

A stand-alone reader for Substance Documents (can be used as a blog)
JavaScript
27
star
12

multiple_select

MooTools based multiple select widget
JavaScript
14
star
13

master_thesis

Web-based Information Visualization
Shell
11
star
14

stacks

Visualizing groups of items as self-organizing stacks
JavaScript
11
star
15

chart

A simple charting library that strictly separates data from graphical representation
JavaScript
10
star
16

bullets

Unveil.js graphics demo
JavaScript
10
star
17

scatterplot

An interactive, animated Scatterplot for the Dejavis sandbox
JavaScript
9
star
18

linechart

Interactive, animated Linechart, built with Unveil.js
JavaScript
8
star
19

talk

Let's talk data. In realtime.
JavaScript
8
star
20

envision

A Collection Browser and Visualizer
JavaScript
7
star
21

svelte-postgres-demo

Sveltekit and Postgres
Svelte
7
star
22

collection

A Ruby API for the Unveil.js Collection interface
Ruby
7
star
23

data_table

In memory representation and manipulation of tabular data. Useful for powering all kinds of charts and exports.
Ruby
7
star
24

matrix

Matrix Plot
JavaScript
7
star
25

hub

Substance Hub
JavaScript
6
star
26

collectionize

A little service that translates selected web services to a uniform collection format, which is used by the Envision browser
Ruby
5
star
27

documents-legacy

My writings (written in Prose.io)
4
star
28

library

A home for Substance documents. Think of it as a database for digital documents.
JavaScript
4
star
29

ndogen-client

On-the-fly documentation generation powered by ndogen
JavaScript
4
star
30

dm-is-persistent_state_machine

A Persistent State Machine for DataMapper
Ruby
4
star
31

documents

My Reproducible Documents
4
star
32

substance

Copy of Substance for legacy purposes.
JavaScript
3
star
33

transformer

Turn your ruby objects into a html representation using transformers
Ruby
3
star
34

michael.github.com

Everyone needs a website. This one is not yet ready.
3
star
35

mypubs

2
star
36

map

Substance Map Node Type
JavaScript
2
star
37

substance-editor-legacy

Substance Editor
JavaScript
2
star
38

nextjs-auth-mongo

JavaScript
1
star
39

pferdeerlebnis

Fam Grasbรถck Webpage
HTML
1
star
40

svelte-kit-demo

Svelte
1
star
41

runes-block-editor

Playing with Svelte 5
Svelte
1
star
42

svelte

Svelte
1
star
43

svelte-demo

Svelte Demo
Svelte
1
star
44

react-es6

React ES6 Playground
JavaScript
1
star
45

publications

1
star
46

testdocs

1
star
47

xyz-api

Svelte
1
star
48

nextjs-prisma

TypeScript
1
star
49

xyz-frontend

Svelte
1
star