将角伪影推入PCF

时间:2019-02-13 14:59:29

标签: angular npm cloudfoundry pivotal-cloud-foundry

我们已经构建了(# 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.mapassets/


.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条目吗?提到需要推送的工件...

1 个答案:

答案 0 :(得分:1)

  

路径条目是否在manifest.yml文件中?提到需要推送的工件

您manifest.yml或path中的

cf push -p some/path告诉cf cli项目文件的根目录(即应上传的文件)。

默认情况下,路径是当前工作目录。如果要从其他位置推送文件,请将path设置为应上传内容的新根目录。

例如,如果您想推送dist/文件夹中的内容,则可以将路径设置为dist/,它将上载该文件夹中的所有内容。

如果您想忽略所有内容,请将.cfignore文件(与.gitignore相同的语法)添加到用path设置的目录中。