Is it possible to set up automated continuous deployment with quasar? Ideally between github and firestore. If so, where can I find example code implementing this?
Latest posts made by Charlotte
-
Automate continuous deployment
-
Uninstalling Quasar plugin
I’m not having success in uninstalling the Quasar plugin. npm uninstall quasar -g doesn’t removed it. What command should I be using?
-
RE: Difficulty in creating payload for AXIOS post request
I’ll try that. Thanks. I feel Ive been going round in circles trying to sort this.
-
Difficulty in creating payload for AXIOS post request
Please help me!
Ive been struggling to send an AXIOS post request to my server so that it can add a record to a mysql database. My latest attempt elicits an error - “PayloadTooLargeError: request entity too large”.
This is my request :
addtherecord() {
this.$axios.post(‘http://45.32.144.199:3000/addtherecord’,{
test_name: this.test_name,
})
.then(function (response) {
currentObj.output = response.data;
})
.catch(function (error) {
currentObj.output = error;
});
}
What am I doing wrong?
Many thanks -
RE: how to use sqlite with quasar vue
Just had a look at the url you posted. Very helpful indeed. Many thanks.
-
RE: how to use sqlite with quasar vue
Hi Scott,
My initial ios app was, as you’d assume, a native app written first in Objective C (ugh!) and then re-written in swift. I guess my current one, if I use quasar vue and Cordova would land up being a browser based ios app - unless I use nativescript-vue. To be honest, I’m pretty swamped with absorbing and integrating the vast amount of new technology I’ve had to surmount in moving from what now seems to be the very safe circumscribed world of completed executables. So, forgive me if I sound muddled - I probably am! Charlotte
-
RE: how to use sqlite with quasar vue
Hi qyloxe - many thanks for your very helpful reply! I’m new to this world of client-side dev and am wrestling with my first quasar vue app. Im working on a “proof of concept” - rewriting an IOS app I wrote in the Apple app store but this time in quasar vue. Ive not come across browser based databases before. I take on board your warning that clientside browser db is not permanent. This makes stand-alone IOS apps challenging. I’m going to play around with this technology. Many thanks again. Charlotte
-
how to use sqlite with quasar vue
is there any documentation on how to use sqlite or sqlite3 with quasar vue? Alternately is can anyone point me to a compatible client-side database to use instead?
Many thanks
-
RE: Running quasar vue app on a shared host
SOLVED. Panic over. it just works - like magic.