blob: d3dba1e3748b37677a1a21bb60a8737e0f60217e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Prisbeam
A browser and search engine for local copies of various image boards (Derpibooru, Furbooru, e621, ...)
## Development
Assuming you are using macOS or Linux. Other POSIX systems won't work as Electron does not have binaries for these.
### Cloning
```
git clone https://source.equestria.dev/equestria.dev/prisbeam
```
### Setup
```
# Note: this will install TypeScript globally
npm install
```
### Running
```
# For the app itself:
npm run debug
# For the updater:
npm run debug-updater
```
### Building
```
# This will run 'npm audit fix' and 'npm install' to update dependencies if needed
npm run release
```
|