cra-template-moralis
v0.0.2
Published
A Moralis template for Create React App.
Downloads
2
Maintainers
Readme
cra-template-moralis
This is a modified version of the cra-template-redux template, that adds Moralis to the generated project.
To create a project run:
npx create-react-app my-app --template cra-template-moralis
cd my-app
cp .env.sample .env.local
Edit the file .env.local
and fill in the app ID and server url after you create a Moralis Server Instance.
Now start your app with:
yarn start
Usage
To use this template within your project, add --template cra-template-moralis
when creating a new app.
For example:
npx create-react-app my-app --template cra-template-moralis
# or
yarn create react-app my-app --template cra-template-moralis
Cloning this repo pulls down the Redux template only; not a bundled and configured Create React App.
For more information, please refer to:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.