Initialize your project
- 17 May 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Initialize your project
- Updated on 17 May 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Using the CLI Commands, complete the following steps:
Initialize your project.
Open a terminal window, navigate to the directory that will house your project, and run the following command:cb init --name [project name]
This creates a project folder, initializes Git for the project, and creates an empty
modules
directory.The project name must be unique.
Create a module scaffold. In the terminal window, run the
cb create
command.Django is used to create backend modules.
React Native is used to create frontend modules.
You are now ready to start writing your modules!
Was this article helpful?