1.1.0 • Published 2 years ago

escala-core v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Introduction

Software development blog client.

We are using escala-core-lib which contains list of components that we can use within the project. The core-lib is included in package.json.

"escala-core-lib": "escala-cloud/escala-core-lib"

We can also include specific tag when we release new escala-core-lib by using #version_number.

"escala-core-lib": "escala-cloud/escala-core-lib#1.0.0"

Getting Started

You will need download the node_modules required by this project:

yarn install

Then, run the development server which will start on the default port 3000:

yarn dev

Static HTML Export

Export static HTML, allows us to export our app to static HTML, which can be run standalone without the need of a Node.js server.

  • In order to build for production server, we need to have .env for production. In this case, we have created .env.production which should be removed once we have Jenkin build. The .env.production should be stored on the Jenkin server instead of inside the project.
  • To generate static html we have to run npm command:
yarn build

The command about will export static HTML which placed in ./out folder.