The Bubble web UI in VueJS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
Jonathan Cobb 6a3bbf9b5b ignore .DS_Store před 4 roky
src Merge branch 'master' of git.bubblev.org:bubblev/bubble-web před 4 roky
vue-vuex-registration-login-example-docs first commit před 4 roky
.DS_Store Email verification page (#27) před 4 roky
.babelrc Implement lazy loading and new UI layout (#17) před 4 roky
.gitignore ignore .DS_Store před 4 roky
LICENSE.md reference license file před 4 roky
README.md clarify comment před 4 roky
package-lock.json Implement adding SSH keys (#35) před 4 roky
package.json Implement adding SSH keys (#35) před 4 roky
web-development.md clarify před 4 roky
webpack.config.dev.js add copyright headers před 4 roky
webpack.config.js feat/ui-layout (#25) před 4 roky

README.md

bubble-web

Bubble frontend VueJS web application

The initial basis for the bubble-web frontend was Jason Watmore’s wonderfully well-written Vue/Vuex Registration and Login Example. The LICENSE and README.md files for this code are in the vue-vuex-registration-login-example-docs directory.

To use this frontend with a Bubble API:

Build it:

npm install
webpack

In your ${HOME}/.bubble-test.env file, add this line (fix the path to point to the correct location of your bubble-web/dist directory):

export BUBBLE_ASSETS_DIR=/path/to/bubble-web/dist

In the bubble/bubble-server directory, run the test named bubble.test.dev.DevServerTest, which will run the API and perform initial activation.

mvn -Dtest=bubble.test.dev.DevServerTest test

You can now test the frontend. If you make changes to the frontend code, you can simply run webpack again and reload the page in your browser.