Я пытаюсь развернуть приложение Python Flask на Cloudfoundry, но оно не удается.Он показывает выходные данные
Приложение не может быть сопоставлено с маршрутом hello.cfapps.io, поскольку маршрут существует в другом пространстве.
Пожалуйста, найдите скриншотошибки
Вот как выглядит мой travis.yml:
stages:
- test
- deploy
language: python
python:
- '3.6'
env:
- PORT=8080
cache: pip
script: python hello.py &
jobs:
include:
- stage: test
install:
- pip install -r requirements.txt
- pip install -r tests/requirements_test.txt
script:
- python hello.py &
- python tests/test.py
- stage: deploy
deploy:
provider: cloudfoundry
username: vaibhavgupta0702@gmail.com
password:
secure: myencrytedpassword
api: https://api.run.pivotal.io
organization: Hello_Flask
space: development
on:
repo: vaibhavgupta0702/flask_helloWorld
Вот как выглядит мой файл manifest.yml
---
applications:
- name: hello
memory: 128M
buildpacks:
- https://github.com/vaibhavgupta0702/flask_helloWorld.git
command: python hello.py &
timeout: 60
env:
PORT: 8080
Я не понимаю, почему ошибка приходит.Любая помощь будет принята с благодарностью.