https://github.com/antistic/notive
An app to collect and create images.
https://github.com/antistic/notive
Last synced: 3 months ago
JSON representation
An app to collect and create images.
- Host: GitHub
- URL: https://github.com/antistic/notive
- Owner: antistic
- Created: 2019-05-07T18:39:21.000Z (about 6 years ago)
- Default Branch: publish
- Last Pushed: 2023-07-07T23:25:26.000Z (almost 2 years ago)
- Last Synced: 2025-01-10T22:24:33.378Z (4 months ago)
- Language: JavaScript
- Size: 3.32 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notive
An app to collect and create images.
## Download
Find on the [releases](https://github.com/ant-i-c-s/Notive/releases) page.
## Build
Should be able to build on any machine electron supports (Windows, MacOS, Linux).
```
npm install --production
```
[sqlite3](https://github.com/mapbox/node-sqlite3) needs to be (re-)built for electron. On Windows this requires MSBuildTools 2015.
```
npm rebuild sqlite3 --runtime=electron --target=8.2.1 --dist-url=https://atom.io/download/electron
```
[sharp](https://github.com/lovell/sharp) may also need rebuilding
```
npm run postinstall
```
Finally, build. The output will be in `dist_electron`.
```
npm run electron:build
```## Develop
```
npm install
```
Follow the instructions above for sqlite and sharp.
```
npm run electron:build
```## Test
```
npm run test:unit
```
This project tests in a node environment. [sqlite3](https://github.com/mapbox/node-sqlite3) needs to be (re-)built for this environment as well.
```
npm rebuild sqlite3
```