Skip to content

Commit be7cf2e

Browse files
authored
CHA-1625: sync with deletion the pim-api-doc bucket (clean up non used files) (#1116)
* CHA-1625: drop old files from bucket * CHA-1625: add coherence between what is present into the bucket and the code * CHA-1625: fix link * CHA-1625: drop dead link * CHA-1625: fix dead link
1 parent 1198faf commit be7cf2e

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
- run:
245245
name: Run rsync between local sources and the target bucket
246246
command: |
247-
gcloud storage rsync --recursive ~/dist gs://<<parameters.environment>>-${GOOGLE_CLOUD_PROJECT}-front
247+
gcloud storage rsync --delete-unmatched-destination-objects --recursive ~/dist gs://<<parameters.environment>>-${GOOGLE_CLOUD_PROJECT}-front
248248
249249
infrastructure: &infrastructure
250250
parameters:

content/apps/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ In short, everything you need to guide you in your app journey!
117117
Your app is good to go?
118118

119119
- Read our [how to publish your app](/app-portal/publish-your-app.html) guide
120-
- Consult our recommendations about [how to write your app information](/app-portal/manage-app-information.html#app-identity-and-description)
120+
- Consult our recommendations about [how to write your app information](/app-portal/publish-your-app.html#your-app-must-have-comprehensive-information)
121121

122122
## Develop an app for a custom need
123123

content/extensions/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
In this section, you will learn how to create your first UI Extension in under a minute. By following this quick guide, you'll gain the skills needed to effectively use the UI for creating and managing UI Extensions.
33

44
### Prerequisites
5-
Having the proper permisison to create and manage UI-Extensions (more information [here](https://api.akeneo.com/extensions/ui-extensions.html#prerequisites-2)).
5+
Having the proper permisison to create and manage UI-Extensions.
66

77
### Access the UI-extensions management Interface
88

@@ -48,4 +48,4 @@ Learn more about the availables types of UI-extension in the [Types section](/ex
4848
For a deeprer overview of the Ui extension administration panel and permissions, see our [Help Center](https://help.akeneo.com/extensions/ui-extentions).
4949

5050
::: panel-link UI extensions available types [Next](/extensions/types.html)
51-
:::
51+
:::

content/graphql/limitations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you encounter any **challenges** with the `rate limits`, please don't hesitat
1919

2020
Your insights are invaluable in fine-tuning our system for optimal performance.
2121

22-
You can also find more details about the [REST API Limitations](/documentation/limitations.html)
22+
You can also find more details about the [REST API Good practices](/documentation/good-practices.html)
2323
:::
2424
The **GraphQL API** is limited to `500req/10s` per **PIM URL.**
2525

@@ -136,7 +136,7 @@ If you encounter any **challenges** with the `depth limit`, please don't hesitat
136136

137137
Your insights are invaluable in fine-tuning our system for optimal performance.
138138

139-
You can also find more details about the [REST API Limitations](/documentation/limitations.html)
139+
You can also find more details about the [REST API Good practices](/documentation/good-practices.html)
140140
:::
141141

142142

tasks/copy-assets.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,23 @@ gulp.task('copy-assets', ['clean-dist'], function(){
88
var fa = gulp.src(['node_modules/font-awesome/css/font-awesome.min.css',
99
'node_modules/prismjs/themes/prism-okaidia.css'])
1010
.pipe(gulp.dest('dist/css/'));
11-
var fonts = gulp.src('content/fonts/*')
12-
.pipe(gulp.dest('dist/fonts/'));
11+
12+
var fonts = gulp.src([
13+
'content/fonts/*',
14+
'node_modules/font-awesome/fonts/*',
15+
'node_modules/lato-font/fonts/lato-light/*',
16+
'node_modules/lato-font/fonts/lato-light-italic/*',
17+
'node_modules/lato-font/fonts/lato-normal/*',
18+
'node_modules/lato-font/fonts/lato-normal-italic/*',
19+
'node_modules/lato-font/fonts/lato-medium/*',
20+
'node_modules/lato-font/fonts/lato-medium-italic/*',
21+
'node_modules/lato-font/fonts/lato-semibold/*',
22+
'node_modules/lato-font/fonts/lato-semibold-italic/*',
23+
'node_modules/lato-font/fonts/lato-bold/*',
24+
'node_modules/lato-font/fonts/lato-bold-italic/*',
25+
])
26+
.pipe(gulp.dest('dist/fonts/'));
27+
1328
var lib = gulp.src([
1429
'node_modules/jquery/dist/jquery.min.js',
1530
'node_modules/handlebars/handlebars.min.js',

0 commit comments

Comments
 (0)