How to make changes to the fireapp that will be hosted using firebase hosting?

I am using firebase hosting to host the angularfire application.

The application is deployed using Quickstart instructions in the documents.

There were minor issues in my application that I needed to change. I made these changes, repeated the steps again, but the live application (via my firebase url) does not reflect this.

I tried to uninstall the application by deleting the firebase.json file, re-processing the process several times. But he continues to reflect the old changes. If this was a git push deployment, it looks like I haven't made any new changes. I read documents, --help, commands, etc., but I can not understand it.

What am I missing here?

edit: Exact commands:

localhost:angfire Test$ firebase init
----------------------------------------------------
Your Firebase Apps kpennell@gmail.com
----------------------------------------------------
torid-fire-4332
----------------------------------------------------
Enter the name of the Firebase app you would like to use for hosting
Firebase app: torid-fire-4332
----------------------------------------------------
Site URL: https://torid-fire-4332.firebaseapp.com
----------------------------------------------------
Enter the name of your app public directory.
(usually where you store your index.html file)
Public Directory: (current directory) app
Initializing app into current directory...
Writing firebase.json settings file...
Successfully initialized app
To deploy: firebase deploy
localhost:angfire Test$ firebase deploy
Preparing to deploy Public Directory...
progress: 100%

Successfully deployed
Site URL: https://torid-fire-4332.firebaseapp.com, or use firebase open
Hosting Dashboard: https://firebase.com/account then view the hosting section of your app
localhost:angfire Test$ firebase open
localhost:angfire Test$ `

- . , http . https, .

edit2

- http, , .

Failed to load resource: net::ERR_INSECURE_RESPONSE https://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css
Failed to load resource: net::ERR_INSECURE_RESPONSE https://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js

:

  <script src="bower_components/angular/angular.js"></script>
  <script src="bower_components/angular-route/angular-route.js"></script>
  <script src="bower_components/firebase/firebase.js"></script>
  <script src="bower_components/firebase-simple-login/firebase-simple-login.js"></script>
  <script src="bower_components/angularfire/dist/angularfire.js"></script>
  <link rel="stylesheet" href="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
  <script src="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
  <script src="//tombatossals.imtqy.com/angular-leaflet-directive/dist/angular-leaflet-directive.min.js"></script>
  <link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css" />
  <link rel="stylesheet" href="bower_components/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css" />
  <script src="bower_components/Leaflet.awesome-markers/dist/leaflet.awesome-markers.js"></script>
+4
1

, script HTTP, HTTPS. , .

, Chrome :

[] https://torid-fire-4332.firebaseapp.com/ ' HTTPS, http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css ': HTTPS.".

Internet Explorer 9 ( , , " " ). , IE9, - HTTP HTTPS.

HTTPS.

, script :

<script src="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>

script , "" . , HTTPS, script HTTPS. HTTP, script HTTP.

Update

, , , Firebase. , - , .

:ERR_INSECURE_RESPONSE , cds.leafletjs.com , HTTPS.

, , , leaflet.js .

CDN, HTTPS. . http://cdnjs.com/libraries/leaflet.

+2

All Articles