https://github.com/mapikit/meta-editor
https://github.com/mapikit/meta-editor
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mapikit/meta-editor
- Owner: mapikit
- Created: 2020-05-19T01:10:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T23:45:25.000Z (about 2 years ago)
- Last Synced: 2024-05-23T00:42:31.038Z (about 2 years ago)
- Language: Svelte
- Size: 333 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About meta-editor
meta-editor is a GUI tool used for building systems quickly and more efficiently, using meta-system as its engine.
Meta editor is made with svelte and electron.
## Developing
As usual, before you start, remember to run
```bash
npm install
```
Meta editor has two development modes which can be accessed with the following commands
```bash
# Start a vite dev server that can be accessed trough a browser.
npm run dev
# Start a vite dev server as well an electron instance.
npm run dev-electron
```
> Note: In both cases changes to meta-editor frontend will automatically reload the view, EXCEPT for changes to the electron files. These will require you to relaunch the app entirely.
## Building
Similarly, meta-editor can be built with two commands:
```bash
# Build the application with vite.
npm run build
# Build the vite part of the application as well as electron components.
npm run build-electron
```
> Note: Building is not the same as packaging and that will be worked on in the future