From daada8e0061cccbb5627a6d9c5c9a49ca82d3f42 Mon Sep 17 00:00:00 2001 From: Alexis Lopez Zubieta <contact@azubieta.net> Date: Wed, 28 Aug 2019 14:54:30 -0500 Subject: [PATCH] add development instructions --- README.md | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea40e12..7315eb7 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,18 @@ # Pling-Store Pling-Store is a Content Management App for OCS-compatible websites like opendesktop.org, gnome-look.org, etc. -It allows to download, install and apply desktop themes, icon themes, wallpapers, or mouse cursors under various desktop environments using the "Install"-button. +It allows to download and install applications, desktop themes, icon themes, wallpapers, or mouse cursors +under various desktop environments using the "Install"-button. Currently supported are these desktop environments: KDE Plasma, Gnome, XFCE, Mate, Cinnamon, Budgie, LXQt, Elementary and Enlightenment. +## Usage + Using the Appimage package format, it should work on any distro like Ubuntu, Debian, Arch, Suse, Redhat and many more. -# Best with AppImageLauncher +### Best with AppImageLauncher If you never used an Appimage before, we recommend this tool to make AppImages run, install/uninstall and update on your Linux OS: https://www.pling.com/p/1228228/ @@ -19,6 +22,24 @@ https://www.pling.com/p/1228228/ After installing AppImageLauncher, you can simply Double-Click on the Pling-Store Appimage to run or install it. -# Manual Run +### Manual Run + +To try the Pling-Store without installing, you can simply [make it executable](https://youtu.be/nzZ6Ikc7juw?t=78) and (double-)click on it. + +## Development + +The Pling-Store is a regular electron app plus the [ocs-manager](https://git.opendesktop.org/akiraohgaki/ocs-manager/). The first acts as a presentation +layer and the second is the one who handles the intallation of the different products. + +### Project Setup + +``` +npm install +curl -fsSL -o node_modules/.bin/ocs-manager https://git.opendesktop.org/akiraohgaki/ocs-manager/uploads/d3dc42436b82d11360ebc96b38d4aaf4/ocs-manager-0.8.1-1-x86_64.AppImage +chmod +x node_modules/.bin/ocs-manager +``` + + +### AppImage Generation -To try the Pling-Store without installing, you can simply [make it executable](https://youtu.be/nzZ6Ikc7juw?t=78) and (double-)click on it. \ No newline at end of file +`./scripts/package appimage` -- GitLab