All Projects → klinker-apps → support-dashboard-desktop

klinker-apps / support-dashboard-desktop

Licence: other
A Mac, Windows, Linux, and Chrome dashboard encompassing the services and support tools I use to manage Klinker Apps.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to support-dashboard-desktop

Parsepdm
Mac os 查看PDM文件
Stars: ✭ 249 (+611.43%)
Mutual labels:  mac
podman-macos
📦 Podman frontend for macOS
Stars: ✭ 576 (+1545.71%)
Mutual labels:  mac
vlc-protocol
Open vlc:// links directly from your web browser.
Stars: ✭ 143 (+308.57%)
Mutual labels:  mac
Best App
收集&推荐优秀的 Apps/硬件/技巧/周边等
Stars: ✭ 15,231 (+43417.14%)
Mutual labels:  mac
iOS-AirPrint-for-Mac
enable iOS Airprint Sharing on Mac OS
Stars: ✭ 24 (-31.43%)
Mutual labels:  mac
cleanup manager
Cleanup Manager helps you clean up folders on your Mac's hard drive.
Stars: ✭ 22 (-37.14%)
Mutual labels:  mac
Ipadownload
Search and download decrypted IPA file from 3rd-party App Store.
Stars: ✭ 247 (+605.71%)
Mutual labels:  mac
gifbar
🦄 Find Awesome Gif's right in your Menu Bar
Stars: ✭ 37 (+5.71%)
Mutual labels:  mac
sixarm mac setup
SixArm.com » Mac » Setup notes for new Mac computer and macOS
Stars: ✭ 57 (+62.86%)
Mutual labels:  mac
GithubTower
This browser extension allows you to use Github's "Clone in Desktop" button with Tower
Stars: ✭ 48 (+37.14%)
Mutual labels:  mac
wipri
(Network Metadata Privacy) MAC Address spoofer with bonus combo (options): hostname + signal spoofer - *no disconnects!* Privacy Changing w/Brand Mimics: run as command or optional new randomized identity each boot; includes flags for continually changing random times/changing valid OUI addresses + Hostname randomizer + Device/Signal/location an…
Stars: ✭ 26 (-25.71%)
Mutual labels:  mac
productivity-tools
No description or website provided.
Stars: ✭ 43 (+22.86%)
Mutual labels:  mac
react-device-frameset
React device frameset component
Stars: ✭ 30 (-14.29%)
Mutual labels:  mac
Goldenpassport
A native implementation of Google Authenticator for Mac based on Swift
Stars: ✭ 251 (+617.14%)
Mutual labels:  mac
NDILiteSenderPlugin
NDI™ send-only plugin for Unity macOS/iOS
Stars: ✭ 49 (+40%)
Mutual labels:  mac
Swiftyvk
Easy and powerful way to interact with VK API for iOS and macOS
Stars: ✭ 247 (+605.71%)
Mutual labels:  mac
dotfiles
my dotfiles
Stars: ✭ 12 (-65.71%)
Mutual labels:  mac
time-travel
An rsync based backup script which only transfers modified files. Smooth integration into OSX Notification Center.
Stars: ✭ 43 (+22.86%)
Mutual labels:  mac
homebrew-srm
Homebrew tap for srm since Apple and Homebrew decided nobody had mechanical disks anymore.
Stars: ✭ 14 (-60%)
Mutual labels:  mac
SevenZip
ObjC wrapper around the 7zip/LZMA SDK
Stars: ✭ 34 (-2.86%)
Mutual labels:  mac

header

Klinker Apps Support Dashboard

These are the sites and services that I watch throughout the day. If you are a solo developer, you know the struggle of trying to keep up with support. For me, this tool has been indispensable as my work as continued to gain traction. To have an app I can open, that will instantly give access to all of the info I need has been an incredible timesaver. It displays:

  • Email - an obvious support tool for anyone
  • Slack - I have created different bots to notify me of reviews, purchases, daily summaries, GitHub interactions, etc
  • Pulse - 3 pages: reviews, Firebase analytics, and the admin dashboard for the web app
  • Talon - 2 pages: reviews and Firebase analytics
  • Purchases - 2 pages: Play Store orders and Google Pay
  • GitHub Notifications
  • Twitter - a search for "@KlinkerApps @lukeklinker @TalonAndroid"
  • Google+ Notifications
  • Cloud Consoles - 3 pages: Heroku, AWS, and Redis
  • Jenkins

At it's core, this app just aggregates webpages and makes them easier to access and combine. For example, while the email tab show a fullscreen Gmail view, the Pulse tab opens 3 webpages at once, to display them in a grid.

Running the App

To build and run the apps locally:

// download electron
npm i -g electron

// prepare the installation
$ yarn

// run the app
$ yarn start

To package the apps for each platform:

$ yarn
$ yarn run build-mac
$ yarn run build-linux
$ yarn run build-windows

Notes on Building for Mac

With MacOS Catalina (10.14.5), Apple requires DMG files to be notarized by the distributer. The files that I distribute are all signed and notarized by me.

If you are looking to develop the app yourself, you can debug and run the app through yarn start without issue. However, if you want to make a signed executable (yarn build-mac), you will need to set up your Apple ID and password for the notarization process.

To do this, you will first need a valid Apple developer account. You can sign up at https://developer.apple.com. You will need to use Xcode to export your new developer signing information and add it to your keychain.

You will then need to generate an app-specific password for that Apple ID. This is not the same as the password that you use to sign in to your developer account. You can create this app-specific password, here: https://appleid.apple.com

After completing those two steps, create a .env file in the root of this project. It should look something like:

[email protected]
APPLEIDPASS=xxxx-tttt-vvvv-aaaa

Customizing the App

The pages I have set up probably won't be the same as what you need, since they are specific to my needs. These pages are easy to customize. They just run off of a naming convention. For example, to add a "Play Store" page:

  1. Add an icon called play-store.png to the /resources/images/ folder.
  2. Add the HTML layout to a play-store.html file in the /pages/ folder. I recommend just copying a layout from one of the currently available options. Or, you could make your own. The layout would typically define the webviews.
  3. Add play-store to the navLinks array, in the loader.js file. It will automatically be added to whatever position you have defined.

The naming will need to be consistent across these three locations.

Chrome App Version

This is also a compatible Chrome app. To load it through Chrome, rather than Electron, open chrome://extensions, select Load Unpacked, then just navigate to this project folder. Chrome will load it based on the manifest.json file.

This is actually the way I do it most of the time, to avoid having to maintain Electron. With Chrome, you get all of the new Chrome optimization automatically, when Chrome updates.

License

Copyright 2018 Luke Klinker

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].