This is a basic example of a Meteor dapp, which includes two models: post
and profile
with locate in ./base/models
. It demonstrates the process of
creating, loading, monetizing, and unlocking a post by using Meteor hooks.
This example adds some commonly used file-system calls on top of the base. It demonstrates more process of handling file/folder and data-token/data-union by using Meteor hooks.
This example shows how to build a basic Meteor dapp of social-network. It demonstrates actions like posting, commenting, liking, etc.
Before running example, you need to install create-meteor-app
.
pnpm install -g create-meteor-app
Here we use base
as an example.
cd base
pnpm install
meteor deploy
This step will need your private key to generate personal signature. Rest assured, Meteor will not store or disclose your private key..
After successful deployment, you can find the generated ./output/app.json
,
which contains various information about this new dapp.
pnpm dev
The demo has been successfully launched. Try it!