The Bubble web UI in VueJS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 1.1 KiB

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910111213141516171819202122232425
  1. # bubble-web
  2. Bubble frontend VueJS web application
  3. The initial basis for the bubble-web frontend was Jason Watmore's wonderfully well-written
  4. [Vue/Vuex Registration and Login Example](https://jasonwatmore.com/post/2018/07/14/vue-vuex-user-registration-and-login-tutorial-example).
  5. The [LICENSE](vue-vuex-registration-login-example-docs/LICENSE) and [README.md](vue-vuex-registration-login-example-docs/README.md)
  6. files for this code are in the [vue-vuex-registration-login-example-docs](vue-vuex-registration-login-example-docs) directory.
  7. To use this frontend with a Bubble API:
  8. Build it:
  9. npm install
  10. webpack
  11. 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):
  12. export BUBBLE_ASSETS_DIR=/path/to/bubble-web/dist
  13. In the `bubble/bubble-server` directory, run the test named `bubble.test.dev.DevServerTest`, which will run the API and perform initial activation.
  14. mvn -Dtest=bubble.test.dev.DevServerTest test
  15. 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.