i wanted to make an app for my college with apache cordova in visual studio 2015. For this i need my app to connect with database and make a server. PHP is not going to run on this software. i want coding for my app, if anybody could help please. Thankyou.
You will create web service or rest service on a server to perform your database actions and return json results. Then the Cordova app will call these services, usually using AJAX.
Related
I have just finished the local development of my Web API (ASP.net) and the User interface (AngularJs) and I would like to put it in a Tomcat server. I really need help getting this done.
I really have no ideas
Apache Tomcat is for Java-based applications and will not work. If you are on Linux you would use something like nginx or apache. If you are on windows, you would setup your ASP.NET Core site in IIS or as a windows service. If you have the option, I recommend hosting on a cloud provider such as Azure.
Does anyone know how to deploy a pure Angular application to Azure websites?
I have a Angular 2 application (like the Angular 2 Quick Start) in VSTS Git source control. How can I deploy the application to Azure websites from setting up the VSTS build?
I saw document for deploying node.js (with angular) to Azure: https://msdn.microsoft.com/en-us/library/vs/alm/build/azure/nodejs. I did successfully deploy many of my angular applications to Azure websites following the instructions in the document. But I don't use anything with node.js in my Angular application. I hope that I can just deploy my pure Angular application to azure websites.
Previously, I used Visual Studio to create empty project to contain my Angular application. These kind of projects can be easily deployed to Azure websites. Now I am using VS code and I don't want to create any Visual Studio Solution. I don't know how to setup a continuous deployment in VSTS with just the pure Angular code.
I know I probably need to use IIS anyway and I need some settings/configs. But I just don't want to do them in Visual Studio project.
Using node.js to create a deploy package and then deploying the package by "Azure Web App Deployment" task is a convenient way to deploy to Azure Site.
However, if you don't like this, you can create a batch/power-shell script to copy your deployment files in Azure Web App via FTP method. Refer to this link for details: Deploy by copying files to Azure manually
And you can also try to deploy it from Source Control directly: Deploy from a cloud-based source control service
Connecting project in Monaca Mobile restful api backend with mysql database
I have a backend developed with php and mysql with various restful apis consultation, inclusion, exclusion ready. I need to connect the mobile project in Monaca this backend by apis from our server.
I'm trying different codes using angular, but nothing has certain data. If I can not make this connection will give up working with monaca.
Thank you!
Could not find a working rest example. This example connects to remote server and pulls data from a remote server. Changing URL should take care of the rest.
https://github.com/argelius/onsen-weather-sample
So I am really new to Bluemix,, I was told using Bluemix to create a server which will be connected to an Android App was a good idea, how true is it? And if it is, how do I do it(you don't have to guide me step by step, if you do I dont mind, just posting a good video or link where I can learn about it will help)? If not what other options do you recommend. Btw I am making the app on Android Studio.
#Pablo GarcĂa, In simple words, you have to create an application in Bluemix that is bound to a Mobile Service and your Android App should be configured to interact with the application in Bluemix. If you want to get started with Android app to work with Bluemix, please read this article
http://www.ibm.com/developerworks/mobile/library/mo-android-mobiledata-app/index.html
I am rewriting my JavaScript app using Yeoman and AngularJS. So far, I used simple webpy framework and everything was fine - I used ajax calls to get data from server, server was connected to sqlite database and everything worked.
Now, I'm deeply confused and have no idea how to connect webapp scaffolded by yeoman and angular with my sqlite db. I know that yeoman is built on node.js but I'm not sure what should I do to get working server side.
I know that this question is more about architecture but I was not able find on the internet how to connect this two technologies: yeoman (with angular) and sqlite database.
What should I use?
Angular is a front-end framework. You must have a back-end server to communicate to your database. You talk to it with Angular via a RESTful service using $resource or $http or some 3rd party library like RestAngular.