A meetup clone using Svelte + Jexia. UI gently borrowed from https://github.com/roeeyn/MeetupClone ✌🏼
Install the dependencies...
cd svelte-meetup-jexia
npm install
In order to enable access to Jexia datasets, copy .env.example
to .env
file with your entries for JEXIA_PROJECT_ID
, JEXIA_API_KEY
and JEXIA_API_SECRET
:
cp .env.example .env
Start Rollup:
npm run dev
Navigate to localhost:5000. You should see your app running. Edit a component file in src
, save it, and reload the page to see your changes.
By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the sirv
commands in package.json to include the option --host 0.0.0.0
.