How to install fpm on local machine
Build fpm project locally
Build fpm project locally
To build the fpm project, Change the current working directory to the fpm project and run the following command in terminal
fpm build
fpm build command builds the whole project. It converts the ftd files into the corresponding html file and stores them in .build folder.
Build an individual file
We can only build certain ftd file. This can be done using the following command
fpm build <file-name>
fpm build <file-name> command builds only the file. Eg: if we want to build foo.ftd only, then run fpm build foo.ftd in the terminal.