我们已经构建了(# progress bar
from tqdm import tqdm, tqdm_notebook
# instantiate
tqdm.pandas(tqdm_notebook)
# replace map with progress_map
# where df is a pandas dataframe
df['new_variable'] = df['old_variable'].progress_map(some_function)
)角项目,并在npm build
文件夹中生成了工件。
因此,${WORKSPACE}/dist
具有多个文件/文件夹,例如${WORKSPACE}/dist
。 .js
,.map
,assets/
.ico
下面是$ cd ${WORKSPACE}
$ cf push -f manifest.yml
文件:
manifest.yml
---
applications:
- name: xyz-app-frontend
memory: 64M
disk_quota: 64M
instances: 1
random-route: true
buildpack: https://github.com/cloudfoundry/nginx-buildpack.git#v1.0.1
文件中的path
条目吗?提到需要推送的工件...
答案 0 :(得分:1)
您manifest.yml或路径条目是否在manifest.yml文件中?提到需要推送的工件
path
中的 cf push -p some/path
告诉cf cli项目文件的根目录(即应上传的文件)。
默认情况下,路径是当前工作目录。如果要从其他位置推送文件,请将path设置为应上传内容的新根目录。
例如,如果您想推送dist/
文件夹中的内容,则可以将路径设置为dist/
,它将上载该文件夹中的所有内容。
如果您想忽略所有内容,请将.cfignore
文件(与.gitignore
相同的语法)添加到用path
设置的目录中。