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
+ +
demo-v1
Template with Adobe Commerce CE store and a WordPress blog.
<Button variant="outlined" size="small" href="https://v3demo1.deity.io/" target="_blank">
View demo →
</Button>
+ +
demo-v2
Template based on BigCommerce and Algolia search engine.
<Button variant="outlined" size="small" href="https://v3demo2.deity.io/" target="_blank">
View demo →
</Button>
+ +
demo-v3
Template based on a Commercetools store and Contentful blog.
<Button variant="outlined" size="small" href="https://v3demo3.deity.io/" target="_blank">
View demo →
</Button>
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