Skip to content

Commit f6af373

Browse files
committed
docs: truncate posts and fix links
1 parent ff4b1ae commit f6af373

File tree

10 files changed

+22
-2
lines changed

10 files changed

+22
-2
lines changed

adminforth/documentation/blog/2024-08-05-chatgpt/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Here is how it looks in action:
1313

1414
![alt text](../../docs/tutorial/05-Plugins/demoChatGpt.gif)
1515

16+
<!-- truncate -->
17+
1618
## Simple controls
1719

1820
To control plugin we use our open-source [vue-suggestion-input](https://github.com/devforth/vue-suggestion-input).

adminforth/documentation/blog/2024-10-01-ai-blog/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ But what about writing plain text? For example blogs and micro-blogs: sometimes
1111

1212
![alt text](nuxtBlog.gif)
1313

14+
<!-- truncate -->
15+
1416

1517
For AI plugins are backed by OpenAI API, but their architecture allows to be easily extended for other AI providers once OpenAI competitors will reach the same or better level of quality.
1618

adminforth/documentation/blog/2024-10-31-compose-ec2-deployment/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ tags: [aws, terraform]
77

88
Here is a row snippet to deploy AdminForth to Terraform.
99

10+
<!-- truncate -->
11+
12+
1013
Assume you have your AdminForth project in `myadmin`.
1114

1215
Create file `Dockerfile` in `myadmin`:

adminforth/documentation/blog/2024-11-14-compose-ec2-deployment-ci/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Here Terraform state will be stored in the cloud, so you can run this deployment
1111

1212
We will use GitHub Actions as CI/CD, but you can use any other CI/CD, for example self-hosted free WoodpeckerCI.
1313

14+
<!-- truncate -->
15+
1416
Assume you have your AdminForth project in `myadmin`.
1517

1618

adminforth/documentation/blog/2024-12-11-backup/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Every reliable system requires a backup strategy.
99

1010
If you have no own backup infrastructure, here can suggest a small docker container that will help you to backup your database to AWS Glacier.
1111

12+
<!-- truncate -->
13+
1214
As a base guide we will use a previous blog post about [deploying adminforth infrastructure](/blog/compose-ec2-deployment-github-actions).
1315

1416

adminforth/documentation/blog/2025-01-19-how-adminforth-manages-version/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ That is why we decided to move the idea of generating versions, and GitHub relea
1515

1616
In this post I will explain why we did a transition from manual releases to automatic, what profits we got from it, and also will show you simple example how to do it in your project!
1717

18+
<!-- truncate -->
19+
20+
1821
## Prehistory and issues
1922

2023
Before 1.6.0 AdminForth was using manual CHANGELOG.md.

adminforth/documentation/blog/2025-01-24-how-i-published-token/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Recently, while moving plugins to separate repositories, I decided to try [Infis
1212

1313
Here’s what I did:
1414

15+
<!-- truncate -->
1516

1617
```yaml title=".woodpecker.yml"
1718

adminforth/documentation/docs/tutorial/03-Customization/01-branding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The first things you would probably like to change are the logo, favicon and the
1010

1111
First of all create directory named `custom` at the same level with your TypeScript/JavaScript index file.
1212

13-
We will use this directory for all custom components. If you want to call your dir with other name then `custom`, just set [customComponentsDir option](/docs/api/Back/interfaces/AdminForthConfig#customcomponentsdir)
13+
We will use this directory for all custom components. If you want to call your dir with other name then `custom`, just set [customComponentsDir option](/docs/api/Back/interfaces/AdminForthConfigCustomization/#customcomponentsdir)
1414

1515
Place your logo file into the `custom` directory e.g. (`logo.svg`)
1616

adminforth/documentation/docs/tutorial/03-Customization/13-standardPagesTuning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export default {
254254
],
255255
```
256256

257-
> Same effect can be achieved by using [hooks](/docs/tutorial/Customization/hooks/#modify-the-data-before-it-is-saved-to-the-database). But `fillOnCreate` might be shorter and more readable.
257+
> Same effect can be achieved by using [hooks](/docs/tutorial/Customization/hooks/#example-modify-the-created-object-before-it-is-saved-to-the-database). But `fillOnCreate` might be shorter and more readable.
258258
259259

260260
### Link to create form with preset values

dev-demo/custom/Dash.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,11 @@
206206
</div>
207207
</div> -->
208208

209+
<div class="bg-white rounded-lg shadow dark:bg-gray-800 p-4 md:p-5 mt-4">
210+
211+
{{ $t(`Get into tarot with our free readings — no sign up required! Whether you’re looking for love, career guidance or just curious what the cards have to say, TarotCards.io has you covered. Try our love readings, quick “Yes or No” spreads or the classic 5-card life path layout to gain new insight into your journey.`) }}
212+
213+
</div>
209214
</div>
210215
</template>
211216

0 commit comments

Comments
 (0)