Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bortseb/local-wiki
https://github.com/bortseb/local-wiki
local-wiki wiki
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bortseb/local-wiki
- Owner: Bortseb
- Created: 2022-02-12T00:35:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-11T16:48:04.000Z (over 1 year ago)
- Last Synced: 2024-10-28T12:44:42.207Z (2 months ago)
- Topics: local-wiki, wiki
- Language: JavaScript
- Homepage:
- Size: 4.71 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fedwiki Packaged as a standalone app (via Electron)
__Table of Contents__
- [App Icon Images](#app-icon-images)
- [Run Locally and Develop on your Computer](#run-locally-and-develop-on-your-computer)
- [Building / Packaging & Releasing (New Versions)](#building--packaging--releasing-new-versions)## App Icon Images
Replace `electron/build/icon.icns`. This one is utilized by MacOS.
Replace `electron/build/icon.ico`. This one is utilized by Windows.
Replace `web/dist/logo/icon.png`. This one is utilized by Linux.
## Run Locally and Develop on your Computer
_Prerequisites_
- Have nodejs version 14 or 16 installed on your system
Then run
- `npm run install-deps`
Run `npm run electron`
### Commands that are more specific to your use case:
**web** (user interface)
- Use nodejs version 14
- `npm run web-install`
- `npm run web`**electron**
- `npm run electron-install`
- `npm run electron-tsc` (**needs to be re-run whenever electron folder source code changes**)
- `npm run electron`## Building / Packaging & Releasing (New Versions)
To build:
- `npm run build`
The packaged executables can be found in `electron/out`.
In order to get cross-platform builds, just tag your repository like `v0.0.1` and push those tags to Github. CI will automatically start running a build, under the "Release" action.
> Macos: You will need to have set the following environment variables as repository secrets:
> - APPLE_CERTIFICATE_BASE64
> - APPLE_CERTIFICATE_PASS
> - APPLE_DEV_IDENTITY
> - APPLE_ID_EMAIL
> - APPLE_ID_PASSWORD
>
> The first two should be set as equivalents of `MACOS_CERTIFICATE` = `APPLE_CERTIFICATE_BASE64` and `MACOS_CERTIFICATE_PWD` = `APPLE_CERTIFICATE_PASS` as found in the following article, which also provides other instruction regarding this: https://localazy.com/blog/how-to-automatically-sign-macos-apps-using-github-actions
>
> There is a sixth environment variable which is useful to set, like this: `DEBUG: electron-osx-sign*,electron-notarize*`. This allows for useful logging outputs from the signing and notarizing process. This env var is set automatically when running on CI, in the "Release" Github Action.TODO: Global find and replace:
`com.some-domain-name.app-name`: replace with an Apple ["bundle Id"](https://developer.apple.com/documentation/appstoreconnectapi/bundle_ids) that is registered on your Apple Developer account