Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm deploying my angular 10 app to firebase hosting. This is my first time deploying an app so I have a couple of questions.
If I make changes to my app, do I have to create a new build and deploy that new build?
I know angular coverts ts files to js once it is deployed, so how do I add changes to those files at that point, if needed?
Yes, if you make a change to the app, you'll have to rebuild it, and deploy the results of that build.
If you're deploying JS files that are built from TS files, the build step will rebuild updated JS files in the above process, and those updated files are then deployed.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
my question is, should I separate firebase app and function and hosting projects?
put it in different folders like:
app
hosting
functions
or put it in the same folder and thats it?
The main idea of folder is to separate the resources and create an structure with different organizational accesses, as is mentioned in this article
If your projects and their resources are not interconnected using folders could be useful to quickly identify a project category and you can create some sub folders with the stage of your projects.
For example
app
-- DEV
-- PROD
-- Q&A
For more information about folder please check this document
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
As I am a new in Ionic 2/Firebase and android/ios.
From Firebase Console I got the config variable and added it into my app.module.ts. Everything works fine on the web. What shall I add to my ionic 2 platforms so that my app would work on all platforms?
Anyone can help? Thanks.
Yes, you should add GoogleService-info.plist to the root of Ionic 2 Project and platforms/ios. And google-services.json to platforms/android.
I have written this tutorial.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm trying out CI for first time and have chosen Jenkins after reading good reviews about it.
I have installed the Jenkins for Microsoft. Now i have a .NET web applications BuildScript which is Example.xml, which consist of ant scripts. My question is how can I load this file to Jenkins so that it builds my application as the script does in command prompt?
After creating a new project, click on configure, there is section named BUILd under that you get a option like invoke Ant select that and you get a textbox to enter the target to be executed inside Ant file.
Then click on Advanced option below, there you can enter the following
Build file : Path to your build file(example.xml)
Properties : label=$JOB_NAME-$BUILD_NUMBER
Java Options : -Dbranch=trunk -Dversion=HEAD
this would do the job.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How do you build a Meteor application with TypeScript?
Please add meteor typescript compiler to your project. it compiles .ts artifacts on the fly using the tsc command line (batch mode)
The package source is available via GitHub. You may also add the plugin directly by typing meteor add meteortypescript:compiler from your project root directory.
There is this github project : https://github.com/grmlin/meteor-typescript
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Secondary questions are
How do we best utilize SCM in the build process?
How are code files labed and branched?
Should we the .csproj and .sln files for build? How flexible are these when deploying to several environments? I know these are msbuild files. But
as we add new files, this can become a bottlenect of updating and maintaining these .csproj files in SCM.
How is rollback done in case of failed builds that QA missed testing etc,etc.,
Are there any good articles on the build process?
This is more a question on the process and less on the choice of automated build tools. Please share your build process. I would like to get an end-to-end view
from developers checking-in to Going Live.
Continuous Integration: Improving Software Quality and Reducing Risk
http://www.amazon.com/gp/product/0321336380
book's website is here:
http://www.integratebutton.com