https://github.com/raoul2000/project-em-01
https://github.com/raoul2000/project-em-01
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raoul2000/project-em-01
- Owner: raoul2000
- Created: 2016-03-12T21:39:04.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-20T17:28:29.000Z (about 9 years ago)
- Last Synced: 2025-02-09T01:48:20.248Z (4 months ago)
- Language: HTML
- Size: 57.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
Awesome Lists containing this project
README
**This is a work in progress**
A desktop application and a web app to navigate into a simple embeded database.
*warning* : Before running this app you must ensure that native DB data are available as XML file (they are not committed in this repo).
## Install
```
git clone https://github.com/raoul2000/project-em-01.git
cd project-em-01
npm install
```**warging** : the jquery.mmenu plugin must be installed manually in the `vendor` folder (to improve)
## Usage
### Desktop app
```
npm start
```To build the desktop app for windows (platform=win32 arch=x64) you may use :
```
npm run package
```Once built, the result of the package is available in the folder `ctdb-explorer-win32-x64`.
### Web app
The *web app* has been tested on Firefox and Chrome.
To run it from the working folder you must have an HTTP server available and navigate to `webapp.html`.
Here we are going to use **http-server**. If not done, install is globally with :
```
npm install http-server -g
```
Then start the server and open the `webapp.html` page :
```
npm run webapp
```