質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

BitBucket

BitBucketは無料のリポジトリ管理ホスティングサービスです。 MercurialとGitのVCSに対応しています。プライベートリポジトリを、制限なく作成することが可能です。

Q&A

解決済

1回答

1434閲覧

herokuにgitレポジトリのデータが表示されません!!

s.k

総合スコア423

Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

BitBucket

BitBucketは無料のリポジトリ管理ホスティングサービスです。 MercurialとGitのVCSに対応しています。プライベートリポジトリを、制限なく作成することが可能です。

0グッド

0クリップ

投稿2016/09/11 16:03

こんにちは!
表題の件です。

Cloud9で作成したrailsファイルをbitbucketにpushしherokuへpushしたつもりなのですが、
heorku createで作ったファイルをブラウザで開いてもHeroku | Welcome to your new app!しか表示されません..

なんども試していますが、原因わからずなので質問しました!!

自分なりに考えている原因は、Gemfileの中でversionがあっていない点です。
具体的に言うと、データベースとrailsのversion(sqiteなど)があっていないところです。

何か見覚えのある方はぜひご指摘お願いします。

【Gemfile】

source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.5' # Use sqlite3 as the database for Active Record gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets gem 'uglifier', '>= 1.3.0' # Use CoffeeScript for .coffee assets and views gem 'coffee-rails', '~> 4.1.0' # See https://github.com/rails/execjs#readme for more supported runtimes # gem 'therubyracer', platforms: :ruby # Use jquery as the JavaScript library gem 'jquery-rails' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks gem 'turbolinks' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.0' # bundle exec rake doc:rails generates the API under doc/api. gem 'sdoc', '~> 0.4.0', group: :doc # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Unicorn as the app server # gem 'unicorn' # Use Capistrano for deployment # gem 'capistrano-rails', group: :development group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' end group :development do # Access an IRB console on exception pages or by using <%= console %> in views gem 'web-console', '~> 2.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' end group :test do gem 'minitest-reporters', '1.0.5' gem 'mini_backtrace', '0.1.3' gem 'guard-minitest', '2.3.1' end group :production do gem 'pg', '0.17.1' gem 'rails_12factor', '0.0.2' end

一応、試したコマンドも載せておきます。
①git init
②git add -A

③git commit -m "Initialeze"

On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working tree clean

④git remote add origin git@bitbucket.org:name/sample_app.git

fatal: remote origin already exists.

⑤git push -u origin --all

Warning: Permanently added 'bitbucket.org,104.192.143.2' (RSA) to the list of known hosts. Branch master set up to track remote branch master from origin. Branch static-pages set up to track remote branch static-pages from origin. Everything up-to-date

⑥git push -u origin --tags

Warning: Permanently added 'bitbucket.org,104.192.143.3' (RSA) to the list of known hosts. Everything up-to-date

⑦heroku login

Logged in as…

⓼heroku create

Creating app... done, ⬢ stark-tor-79427 https://stark-tor-79427.herokuapp.com/ | https://git.heroku.com/stark-tor-79427.git

⑨ git push heroku master

remote: ! No such app as limitless-garden-74415. fatal: repository 'https://git.heroku.com/limitless-garden-74415.git/' not found
よろしくお願いします!

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

宛先を変えました。
何個もファイルを作っているうちに自分がどのファイルにデータを送っているのか、把握していませんでした。

新しいファイルにデータを送信しているつもりが、
それよりも古いデータにデータを送っていて最新のファイルでは表示されないという現象。

投稿2016/10/19 07:16

s.k

総合スコア423

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問