Невозможно загрузить любую страницу.Приложение Rails с Webpacker для приложения Heroku упало - PullRequest
0 голосов
/ 03 октября 2018

До добавления webpacker в мое приложение моя производственная среда в heroku работала просто отлично.В тот момент, когда я добавил webpacker, у меня появилась эта проблема.

Я искал эту проблему и пытался удалить / public / packs, и эти решения не сработали.У меня возникают проблемы при попытке доступа к моему приложению rails с помощью webpacker to heroku.Мне удалось развернуть приложение, проблема возникает, когда я пытаюсь загрузить домашнюю страницу индекса своего приложения (или любую другую страницу в моем приложении).Все, что у меня есть, это информация в моих логах heroku, которая не удается, когда я пытаюсь сделать запрос GET.Мне не хватает конфигурации?

Я использую Rails 5.1, webpacker и Yarn.

URL для моего приложения: http://semanticworkflow -api.herokuapp.com /

Вот мои журналы приложений:

2018-10-03T00:07:12.951011+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=semanticworkflow-api.herokuapp.com request_id=2623c8c8-0cff-46cc-be81-7c0b28d3fd90 fwd="191.176.29.243" dyno= connect= service= status=503 bytes= protocol=https
2018-10-03T00:07:13.474152+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=semanticworkflow-api.herokuapp.com request_id=1524e5ad-1bfd-4dfa-b596-4e1c60545903 fwd="191.176.29.243" dyno= connect= service= status=503 bytes= protocol=https

Это мой файл gitignore:

# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
#   git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore Byebug command history file.
.byebug_history

/public/packs-test
/public/uploads
/node_modules
authorized_keys

файл webpacker.yml (обновление):

# Note: You must restart bin/webpack-dev-server for changes to take effect

default: &default
  source_path: app/javascript
  source_entry_path: packs
  public_output_path: packs
  cache_path: tmp/cache/webpacker

  # Additional paths webpack should lookup modules
  # ['app/assets', 'engine/foo/app/assets']
  resolved_paths: ['app/javascript/src']

  # Reload manifest.json on all requests so we reload latest compiled packs
  cache_manifest: false

  extensions:
    - .coffee
    - .erb
    - .js
    - .jsx
    - .ts
    - .vue
    - .sass
    - .scss
    - .css
    - .png
    - .svg
    - .gif
    - .jpeg
    - .jpg

development:
  <<: *default
  compile: true

  dev_server:
    host: localhost
    port: 3035
    hmr: false
    https: false

test:
  <<: *default
  compile: true

  # Compile test packs to a separate directory
  public_output_path: packs-test

production:
  <<: *default

  # Production demands on precompilation of packs prior to booting for performance.
  compile: false

  # Cache manifest.json for performance
  cache_manifest: true
...