Get up and running with ForSure in just a few minutes.
Create a new file with the .forsure extension and define your project structure.
# project.forsure
root:
- Type: Directory
- Name: src/
<description>
Source code directory
</description>
- Type: File
- Name: index.js
<description>
Main application file
</description>Use the ForSure CLI to generate the actual files and directories.
forsure generate project.forsure --output ./my-projectCheck that your project structure was created correctly.
tree my-project
my-project/
└── src/
└── index.js