A Svelte/Sapper + Strapi boilerplate with some neat features, helpers, examples and more.
The project has two folders frontend
for your Sapper frontend and backend
for your Strapi backend.
The frontend is built with Sapper. This sets up your frontend.
cd frontend
npm install
Before starting your frontend-server, make sure to create an .env
file in
your frontend folder. You can use the provided .env.example
for that.
Then run npm run dev
to start your frontend server.
Checkout the Svestra frontend README for more information and guidance.
The backend is built with Strapi. This sets up your backend.
cd backend
npm install
You can either start with a plain instance of Strapi by running npm run develop
or you can use import our database dump file with helpful settings, roles, users and some content-types to get started.
Checkout the Svestra backend README for more information and guidance.
Feel free to send over a PR for any changes you think should be included.