Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.13 KB

README.md

File metadata and controls

60 lines (39 loc) · 1.13 KB

🎨 E-Sektionen frontend starter template

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.

Development

The development server can be started by running:

yarn dev

Deployment

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

Docker

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