Built with Angular and Firebase with styles and components from MaterializeCSS. Current support for Chrome and Chromium.
We use Discord for realtime collaboration (it's not just for gaming!) Our invite code is https://discord.gg/FnvQ6MG. Everyone is welcome to join!
Need help? View the documentation for the ElectroTab API.
- Support for Google Chrome/Chromium. View the
chrome-extension
branch for the extension's source code. - Modularity New features can be added without disrupting any other modules! Users can easily enable and disable modules.
- Drag and Drop Interface Widgets can be rearranged, resized, added, and removed. All changes are automatically synced with the Firebase database.
- Themes: Change the color scheme! (That's about it for now, kind of sad.)
- Accounts: Sign in with your Google or GitHub account, or make one using your email! All of your settings are saved with your account, no matter what device you use.
- Support for Safari, Firefox, and Edge. Shouldn't be too hard.
- Better Theme System Customize everything, from fonts to icons. Save your themes and share them with your friends!
- Custom Widgets Design your own widgets using HTML, CSS, and JavaScript! Submit them to a database where others can use your creations!
- Clone or fork the git repository (https://github.com/dbqeo/ElectroTab).
- Ensure you have the latest version of node.js installed.
- Run
npm install
. - Run
npm start
. This will serve the app to localhost:4200. - Open your web browser (hopefully Chromium/Chrome) to localhost:4200. Enjoy :)
- Run
ng build --prod --output-hashing=bundles --no-aot
-> Start new build with partial hashing and uglifyJS. This will ensure that the cache will be refreshed quickly with new updates. Note: The--no-aot
flag is a temporary workaround that will be removed in the next update. - Run
firebase deploy
-> Deploy new build to Firebase
If you do not have access to our Firebase database, you can still deploy the build on your own website to test.
Please read our Contribution Guide for step-by-step instructions on how to contribute to ElectroTab.
- master: This is the release branch. Please do not submit any pull requests directly to master. This branch will frequently be built and deployed directly to all of our users.
- develop This is the branch containing the latest semi-stable changes. Commits should not be directly created to develop. Instead, create a new branch or fork the repository.
- chrome-extension This is the source code for the ElectroTab Chrome extension. It is an orphan branch, so pull requests may be created directly to this branch without problem. You are welcome to contribute however you like to this extension plugin.
- Upcoming Branches Safari, Edge, and Firefox extension support.
- Run
git fetch --all
- Run
git reset --hard origin/master
- Run
git reset --soft HEAD~xxx
<- Replace xxx with an int of how many commits you want to squash - Run
git commit -m "New message for the combined commit"
- Run
git push origin +name-of-branch
<- BE CAREFUL. MAKE SURE you are pushing to the desired branch!!!