angularfire アプリをホストするために firebase ホスティングを使用しています。
ドキュメントのクイックスタートの手順を使用して、アプリは正常にデプロイされました。
アプリにいくつかの小さな問題があり、変更する必要がありました。これらの変更を行い、手順を再度実行しましたが、ライブ アプリ (firebase URL 経由) にはこれが反映されません。
アプリの削除、firebase.jsonファイルの削除、プロセスのやり直しを数回試みました。ただし、古い変更は引き続き反映されます。これが git push デプロイメントの場合、新しい変更をコミットしていないように見えます。ドキュメント、--help、コマンドなどを読みましたが、これを理解できません。
ここで何が欠けているのでしょうか?
編集: 正確なコマンド:
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's 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に変更しましたがアプリに反映されません。
編集2
アプリで変更が行われているにもかかわらず、まだ 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.github.io/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>