Blinkenrocket Web-Interface to Build Texts and Animations http://blinkenrocket.de
  • JavaScript 99.5%
  • HTML 0.5%
Find a file
2019-12-31 13:17:17 +01:00
flow-typed update, modernise, fix ios 2017-12-22 21:14:25 +01:00
src minor design change 2019-12-31 12:45:50 +01:00
.babelrc fix build 2017-12-22 21:18:36 +01:00
.editorconfig Add .editorconfig 2016-06-18 21:33:22 +02:00
.eslintignore update, modernise, fix ios 2017-12-22 21:14:25 +01:00
.eslintrc.js update, modernise, fix ios 2017-12-22 21:14:25 +01:00
.flowconfig update, modernise, fix ios 2017-12-22 21:14:25 +01:00
.gitignore updated gitignore to ignore intellij files 2018-03-06 15:52:38 +01:00
.travis.yml update travis.yml (opt out of edge deployment) 2019-05-14 19:28:48 +02:00
firebase.json add firebase hosting configuration 2019-05-13 17:36:04 +02:00
firestore.rules bugfix: allow users to set their own active flag 2019-12-31 12:44:04 +01:00
LICENSE initial commit of everything 2016-06-03 19:32:20 +02:00
package.json add deployment instructions 2019-12-31 13:07:31 +01:00
README.md fix readme formatting 2019-12-31 13:17:17 +01:00
webpack.config.js add deployment instructions 2019-12-31 13:07:31 +01:00
yarn.lock add deployment instructions 2019-12-31 13:07:31 +01:00

webedit-react Blinkenrocket WebInterface

Build Status

blinkenrocket.de

Quickstart

System Setup

Getting started with the code

Clone the Git repository, and change into the project directory.

# Install dependencies and build the project
yarn
yarn build

# Run development server
yarn dev

Now you can access the web interface via http://127.0.0.1:8080

Deployment

The production release is hosted at Firebase. To deploy a new version, execute the following commands on your local machine:

  $ FIREBASE_PROJECT_ID='blinkenrocket' FIREBASE_API_KEY='<api key>' FIREBASE_AUTH_DOMAIN='editor.blinkenrocket.de' yarn build-firebase
  $ firebase login
  $ firebase deploy -m "some explanation what this release changes"

Notes

Contributors