Create Deity application
Now that you have access to our packages, let’s create a Deity template application. You can choose from three of our templates.
Choose demo template
+ +
+ +
+ +
You can generate one of these template apps by running the following command in your terminal:
npx @deity/create-falcon-app --full <demo version> <project-name>
A new project will be created into the directory <project-name>
. The file structure is straightforward:
project-name/
|-client
|-server
You can run the project on your local machine. Note that you will need to run both apps separately as follows:
cd client
yarn start
cd server
yarn start