The Bubble web UI in VueJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.1 KiB

4 years ago
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 ASSETS_DIR=/path/to/bubble-web/dist
  13. In the `bubble/bubble-server` directory, run the test named `bubble.test.dev.DevServerTest`, like so:
  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.