Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juancsucoder/systemicworks
This repository contains the webapp of 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.
https://github.com/juancsucoder/systemicworks
webapp
Last synced: 26 days ago
JSON representation
This repository contains the webapp of 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.
- Host: GitHub
- URL: https://github.com/juancsucoder/systemicworks
- Owner: JuanCSUCoder
- License: gpl-3.0
- Created: 2021-03-17T21:03:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T22:58:27.000Z (about 2 years ago)
- Last Synced: 2024-10-28T12:40:39.214Z (3 months ago)
- Topics: webapp
- Language: JavaScript
- Homepage: https://juancsucoder.github.io/SystemicWorks/
- Size: 7.99 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# SystemicWorks
### an advanced and free tool for thinking in systems![](https://img.shields.io/github/workflow/status/JuanCSUCoder/SystemicWorks/Node.js%20CI/main?label=Main%20Branch&style=flat-square) ![](https://img.shields.io/github/languages/code-size/JuanCSUCoder/SystemicWorks?style=flat-square)
This repository contains the webapp of SystemicWorks, which will be an **advanced and free tool for thinking in systems**, developed from the source code and concept of [Nicky Case](http://ncase.me), and improved to compete with proprietary software.
## Clone Project
```bash
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:```bash
npm run serve
```## Build
To build for production use:```bash
npm run build
```Or
```bash
# The same effect as above but a more specific and descriptive name
npm run build:prod
```For development use:
```bash
npm run build:dev
```## Deploy
To deploy in GitHub Pages use:```bash
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**
```bash
npm i && npx release && npm run build:prod && npm run deploy
```