enterspeedhq / enterspeed-demos

Example projects built using Enterspeed as a speed layer (high-performance data store).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enterspeed demos

This repo contains example projects built using Enterspeed as a speed layer (high-performance data store).

Demos

What you'll need

You will need to set up a free Enterspeed account. You can sign up here: https://app.enterspeed.com/signup

Once you have created your account and created a tenant, you need to configure your tenant by setting up:

  • Domains and hostnames
  • Environment and environment clients
  • Data sources

You can read more about it in our getting started guide: https://docs.enterspeed.com/getting-started

Ingesting dummy data

Once you have created a data source in Enterspeed, you can start ingesting data. This can be done using our API: https://docs.enterspeed.com/api#tag/Ingest

You can find the data used in the demos here in each project's folder.

Example ingest

curl --location --request POST 'https://api.enterspeed.com/ingest/v2/UNIQUE-ID' \
--header 'X-Api-Key: [INSERT-YOUR-OWN-API-KEY]' \
--header 'Content-Type: application/json' \
--data-raw '{
  "type": "blog",
  "url": "/blog"
}'

How to clone a single folder

If you don't want to download the entire repo of demos, it's possible to clone a single folder using Git Bash.

git clone \
  --depth 1  \
  --filter=blob:none  \
  --sparse \
  https://github.com/enterspeedhq/enterspeed-demos \
;
cd enterspeed-demos
git sparse-checkout set [REPLACE-WITH-FOLDER-NAME]

Caveats

All demos are hosted on Netlify. This means many of the demos contain Netlify-specific files and dependencies.

About

Example projects built using Enterspeed as a speed layer (high-performance data store).


Languages

Language:JavaScript 66.2%Language:CSS 13.5%Language:Vue 8.6%Language:TypeScript 4.8%Language:HTML 3.3%Language:Astro 2.1%Language:Svelte 1.3%