This template is used for creating a new frontend/fullstack application.
It uses the following technologies:
It also adds the Tailwind prettier plugin to format the classnames in the code.
The development server can be started by running:
yarn dev
A deployment build can be created by running:
yarn build
This builds the application and creates a folder called build
in the root directory.
The application can then be ran by running:
node build/index.js
You can run both the build and the start by running:
yarn start
Adds a boilerplate dockerfile to the project.
It builds the project using the Node Adapter.
To build the dockerfile run:
yarn docker:build
Then to run it:
yarn docker:run