Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.48 KB

File metadata and controls

59 lines (42 loc) · 1.48 KB

SystemicWorks (fork)

an advanced and free tool for thinking in systems

This repository contains a fork of JuanCSUCoder's SystemicWorks, which will be an advanced and free tool for thinking in systems, developed from the source code and concept of Nicky Case, and improved to compete with proprietary software.

Clone Project

git clone https://github.com/JuanCSUCoder/SystemicWorks.git
cd SystemicWorks
# Open VSCode or your prefered editor
code .

This git repository is configured with a devcontainer so you can open it to get all the development environment correctly configured

Develop

To watch live changes of the project in the browser use:

npm run serve

Build

To build for production use:

npm run build

Or

# The same effect as above but a more specific and descriptive name
npm run build:prod

For development use:

npm run build:dev

Deploy

To deploy in GitHub Pages use:

npm run deploy

Tag, Build and Deploy

To update packages, auto-version, tag and deploy in GitHub Pages use:

Replace <type> with patch, minor or major

npm i && npx release <type> && npm run build:prod && npm run deploy