Browse Source

docs: fix broken links

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/6467/head
Raju Udava 1 year ago
parent
commit
bfbef43eff
  1. 29
      packages/noco-docs/docs/020.getting-started/050.self-hosted/010.installation.md
  2. 2
      packages/noco-docs/docs/090.views/040.view-types/010.grid.md
  3. 2
      packages/noco-docs/docs/090.views/040.view-types/020.gallery.md
  4. 2
      packages/noco-docs/docs/090.views/040.view-types/030.form.md
  5. 2
      packages/noco-docs/docs/090.views/040.view-types/040.kanban.md

29
packages/noco-docs/docs/020.getting-started/050.self-hosted/010.installation.md

@ -65,15 +65,11 @@ nocodb/nocodb:latest
</Tabs>
:::tip
To persist data in docker you can mount volume at `/usr/app/data/` since 0.10.6. In older version mount at `/usr/src/app`. Otherwise your data will be lost after recreating the container.
:::
:::tip
If you plan to input some special characters, you may need to change the character set and collation yourself when creating the database. Please check out the examples for [MySQL Docker](https://github.com/nocodb/nocodb/issues/1340#issuecomment-1049481043).
:::
### Docker Compose
@ -140,10 +136,11 @@ nocodb
### Executables
You can download executables directly and run without any extra dependancy. Use the right command based on your platform.
You can download executables directly and run without any extra dependency. Use the right command based on your platform.
##### MacOS (x64)
<Tabs>
<TabItem value="MacOS (x64)" label="MacOS (x64)">
```bash
curl http://get.nocodb.com/macos-x64 -o nocodb -L \
@ -151,7 +148,8 @@ curl http://get.nocodb.com/macos-x64 -o nocodb -L \
&& ./nocodb
```
##### MacOS (arm64)
</TabItem>
<TabItem value="MacOS (arm64)" label="MacOS (arm64)">
```bash
curl http://get.nocodb.com/macos-arm64 -o nocodb -L \
@ -159,14 +157,16 @@ curl http://get.nocodb.com/macos-arm64 -o nocodb -L \
&& ./nocodb
```
##### Linux (x64)
</TabItem>
<TabItem value="Linux (x64)" label="Linux (x64)">
```bash
curl http://get.nocodb.com/linux-x64 -o nocodb -L \
&& chmod +x nocodb \
&& ./nocodb
```
##### Linux (arm64)
</TabItem>
<TabItem value="Linux (arm64)" label="Linux (arm64)">
```bash
curl http://get.nocodb.com/linux-arm64 -o nocodb -L \
@ -174,19 +174,26 @@ curl http://get.nocodb.com/linux-arm64 -o nocodb -L \
&& ./nocodb
```
##### Windows (x64)
</TabItem>
<TabItem value="Windows (x64)" label="Windows (x64)">
```bash
iwr http://get.nocodb.com/win-x64.exe
.\Noco-win-x64.exe
```
##### Windows (arm64)
</TabItem>
<TabItem value="Windows (arm64)" label="Windows (arm64)">
```bash
iwr http://get.nocodb.com/win-arm64.exe
.\Noco-win-arm64.exe
```
</TabItem>
</Tabs>
### Node Application
We provide a simple NodeJS Application for getting started.

2
packages/noco-docs/docs/090.views/040.view-types/010.grid.md

@ -15,7 +15,7 @@ Grid view is the default view type for all tables. This view type is ideal for v
3. [Duplicate a Grid View](/views/actions-on-view#duplicate-view)
4. [Remove a Grid View](/views/actions-on-view#delete-view)
5. [Share a Grid View](/views/share-view)
6. [Lock Grid View for Edits](/views/overview#view-permission-types)
6. [Lock Grid View for Edits](/views/views-overview#view-permission-types)
## Grid View Operations
1. [Rearrange Fields Within the Grid](/table-operations/field-operations#rearranging-fields)

2
packages/noco-docs/docs/090.views/040.view-types/020.gallery.md

@ -13,7 +13,7 @@ Gallery View allows you to display images as thumbnails with other fields just l
3. [Duplicate a Gallery View](/views/actions-on-view#duplicate-view)
4. [Remove a Gallery View](/views/actions-on-view#delete-view)
5. [Share a Gallery View](/views/share-view)
6. [Lock Gallery View for Edits](/views/overview#view-permission-types)
6. [Lock Gallery View for Edits](/views/views-overview#view-permission-types)
## Gallery View Operations
1. [Rearrange Fields Within the Gallery](/table-operations/field-operations#rearranging-fields)

2
packages/noco-docs/docs/090.views/040.view-types/030.form.md

@ -21,7 +21,7 @@ Form view builder layout can be divided into 3 sections:
3. [Duplicate a Form View](/views/actions-on-view#duplicate-view)
4. [Remove a Form View](/views/actions-on-view#delete-view)
5. [Share a Form View](/views/share-view)
6. [Lock Form View for Edits](/views/overview#view-permission-types)
6. [Lock Form View for Edits](/views/views-overview#view-permission-types)
## Form View Operations

2
packages/noco-docs/docs/090.views/040.view-types/040.kanban.md

@ -13,7 +13,7 @@ Kanban View allows you to visualise your data using cards as part of various sta
3. [Duplicate a Kanban View](/views/actions-on-view#duplicate-view)
4. [Remove a Kanban View](/views/actions-on-view#delete-view)
5. [Share a Kanban View](/views/share-view)
6. [Lock Kanban View for Edits](/views/overview#view-permission-types)
6. [Lock Kanban View for Edits](/views/views-overview#view-permission-types)
## Kanban View Operations
1. [Rearrange Fields Within the Kanban](/table-operations/field-operations#rearranging-fields)

Loading…
Cancel
Save