Tweet Tray is a small application which allows you to tweet from your desktop system tray or status bar, without any further distractions. The core technology used consists of Electron, React + Redux and Styled Components. All transpiled from ES6 Javascript.
See releases to find a downloadable executable for your operating system of choice.
Please create a Github issue and provide as much information as possible regarding the bug, including images or error codes. To make things as uniform as possible please follow the guidelines set out in ISSUE_TEMPLATE.md
.
-
Fork the Tweet Tray repository on Github to your own account then clone it locally.
-
To run Tweet Tray locally you will need to first install npm and yarn package managers.
-
Setup the applications' dependencies by navigating to the
tweet-tray
directory and runyarn install
. -
Before you can use all functions of Tweet Tray you'll need to create your own Twitter OAuth Application to test. You don't need to set a callback URL, as Tweet Tray uses a mannually input Authorization code. After that, take the Consumer Key and Secret and update your local
config.js
file found underapp/utils
. -
After everything has been installed simply call
yarn dev
to run the development build. To run the production build you can callyarn prestart
followed byyarn start
.
For all new features or bug fixes please create an issue in the main repository first (so we can track what goes into each release) then simply submit a pull request from your own fork into the original develop
branch. To make sure the changes are easily reviewable please follow the format set out in PULL_REQUEST_TEMPLATE.md
.
To create an installable build simply call yarn package
, which will create an executable based on your current operating system. If you want to debug something in a packaged build you can call DEBUG_PROD=true yarn package
.
This project is based off electron-react-boilerplate, all methodloligies still apply, except for the removal of Flow and SASS. Issue and pull request templates based on formats by yoshuawyts.