Welcome to the Sismo App Store, the central hub for discovering all apps built with Sismo Connect.
You have two approaches to start building applications with Sismo Connect:
-
Templated App: Leverage our ready-made templates. Modify the parameters according to your requirements to create your own Sismo Connect application. Available templates include:
- zkForm template: More than just a gated form.
- zkTelegramBot template: Facilitates privacy-preserving gated telegram group chats.
- zkDrop template: Simplifies privacy-preserving gated NFT airdrops creation.
-
Custom apps (soon): You will be able to build custom apps
All configurations for templates are located in the space-configs folder.
For example, the configuration for the aave-chan-initiative the configuration is setup in this files tree.
space-configs/
├── main
│ ├── aave-chan-initiative.ts
│ ├── cow-swap.ts
│ ├── ...
├── demo
│ ├── aave-chan-initiative.ts
│ ├── cow-swap.ts
│ ├── ...
├── images
│ ├── aave_chan_initiative_apps_swag_1014x720.png
│ ├── aave_chan_initiative_apps_swag_400x400.png
│ └── ...
└── types.ts
To set up your environment, follow these steps:
yarn install
Firstly, ensure that you have set up environment variables in the .env.local file:
cp .env.example .env.local
The environment variable NEXT_PUBLIC_NODE_ENV lets you choose your environment.
- If you want to use the main configuration, set
NEXT_PUBLIC_NODE_ENV=main
. - For using the demo configuration, set
NEXT_PUBLIC_NODE_ENV=demo
.
To run the application:
yarn dev
Now, access the application at http://localhost:3000
Test are made using jest
yarn test
Contact us in Telegram or Discord when you create a Pull Request. We will quickly review it. Once the PR is merged, your Space will appear in the App Store.
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.