Please i need help, this is the second day i am battling with flutterfire configure using Powershell.
I have been able to login to firebase through Powershell terminal, now i run flutterfire configure on the terminal, it brought my demo project but i am unable to select it or create new project.
This is where I'm stuck , please help.
Thanks.
Related
I am not able to install JFrog Artifactory OSS version 7.46.11 in my Windows 10 laptop.
I am trying to setup Devops CI/CD pipeline using Jenkins in my laptop for my hands on Devops skills. I tried to setup Artifactory OSS 7.46.11 version in my laptop. However, I am not able to install the software. Even I tried to install as a service but in vain. I have enabled the ports as well. I tried setting up the JVM parameters as mentioned in the JFrog documentation.
Can someone help me in this.
Thanks.
Are you facing the issue while installing Artifactory itself or installation is successful but unable to start it?
you can try the below things.
Navigate to %JFROG_HOME/artifactory/app/bin directory and you will find a file
Open Power shell and try to run the artifactory.bat file.
This give you better idea on what is happening.
Navigate to %JFROG_HOME/artifactory/var/log folder where the complete logs will be printed. Try to focus on the below log files.
artifactory-service.log
access-service.log
router-service.log
This should reveal some useful information. If you could find anything, share the Error snippet from artifactory-service.log
I'm trying to pump a spring-boot app metrics to elasticsearch using Httpbeat ,I'm following this https://aboullaite.me/spring-boot-elastic-kibana/ ,I'm struggling to install httpbeat into my windows machine I installed Go ,but I'm stuck at the glide installation, is there any alternative that I can use rather than HTTPbeat ,And if you know a clear method rather than the official documentation please help me, I have a demo the next Monday and I'm fully stuck
Try docker install for httpbeat. Go to https://github.com/evanhoucke/httpbeat for more info. Use the docker image evanhoucke/httpbeat.
I have a problem when I try to login to Firebase using the CLI. I installed firebase-tools using npm -g install firebase-tools with admin rights. The steps I do are (from a cygwin terminal on Windows 10 Professional):
firebase login --no-localhost
After this I get the message:
Visit the URL on any device....
Paste authentication code here:
Then, on my browser, I see Google asking if I give Firebase CLI access rights, I say yes and then I get an authorization code displayed on the browser.
I copy this code into the cygwin console and then:
Error: Authentication Error.
I'm at a total loss for this and it's completely stalling my efforts to get to know Firebase. All help gratefully appreciated.
Try:
firebase login --interactive
it will open up a browser window to authenticate.
In my case was bug in terminal in Visual Studio Code. On CMD terminal it start works.
On windows 10, I had issues with my firebase login through cli. I had to run my command line as the administrator and it worked.
I got the same issue today and it was because back in the day I used firebase and didn't remove this define from my bash_profile
FIREBASE_TOKEN
try echo $FIREBASE_TOKEN if something shows up try deleting, open new terminal and re-authenticating
This works for me.
my FIREBASE_TOKEN was FIREBASE_TOKEN=' '. I logged out of all my terminal sessions and tried again and that worked.
Just run the cmd wit administrator privilege...! Happy coding
If you really can't log in with firebase CLI using the "firebase login" command
Then, use GitBash instead of PowerShell in the VS code or any other code editor terminal.
First, download Git SCM then use gitbash in the terminal for any kind of Firebase hosting command terminal image using gitBash
It does work actually!!
I used with cmd, it was worked.
I copy pasted the link into an incognito window, and somehow it worked.
After running across this problem I tried multiple different things to solve this:
Used firebase login --reauth
Used firebase login --no-localhost
Turned off proxy settings
Ran command from within windows/system32
Turned off my security settings in Firefox
All these options listed above worked for others but not for me
Finally the way it worked was to install google chrome and run the command from from chrome instead of firefox
Check your firebase version. if firebase version is "8.15.0" this, then its okay, if not: uninstall firebase-tools globally and globally install it again with 'version'
npm i --global firebase-tools#8.15.0
then after check which terminal u r using, make sure to use cmd terminal. go to your directory and fire command
firebase login.
Check if its working
I have been using meteor framework for the past few days. Now, when i create a new project it downloads meteor-tool#1.3.2_4. But it does not complete download. It seems to be stuck at downloading and shows only following line:
Downloading meteor-tool#1.3.2_4...
How can i troubleshoot this issue.
I got it to download by adding 54.192.225.217 warehouse.meteor.com to /etc/hosts
There's a GitHub issue about it here.
As I haven't found this answer elsewhere with this search and can save some time:
In windows 7, this happened to me because I forgot to run meteor -create in a console with administrator rights.
Just Run As Administrator and check again.
Hope it helps
This is caused by a permissions issue. As workaround, try running the create command with super user permissions:
sudo meteor create myAppName
Probably you will need special permissions for running the app too:
/MyAppName> sudo meteor
If you want to stop running meteor commands with super user permissions, check this: Meteor will not run without Sudo?
I've seen it myself on Mac OS while i run 'meteor update'.
Then i run "ping warehouse.meteor.com" on shell.
And I found that meteor's network service is not good, just try it at other times.
Is there anyway to disable the TideSDK installer dialog popup when first opening your app. I am submitting an app to a 3rd party distribution site and it was rejected because of this.
Please help?
You could use tidebuilder.py and pass the -n parameter to it. The final command would be:
./tidebuilder.py -n -d {output dir} {source project dir}
If you create the application in bundled mode. There would not be any installer dialog popping up while installing the application. It is likely that you have created a networked installer and while installing and running first time its trying to fetch the modules from internet by popping up the installer dialog.
Can you provide some more details about your application, modules used by the same, are u creating net installer or bundled, which platform you are on ?
Also if possible describe the commands which you are using to create the application. This would be helpful for further investigating the issue.