mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 20:26:27 -04:00
docs: small changes&updates (#9059)
* Updates * Adding information to the PR Checklist * fix #5644 * PR feedback * suggestions * Revert dbname
This commit is contained in:
parent
dd8d7732de
commit
6f82f220b8
@ -72,6 +72,7 @@ Spec: Free-tier Oracle VM - Amsterdam - 2.4Ghz quad-core ARM64 CPU, 24GB RAM
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Activities
|
## Activities
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
@ -55,7 +55,7 @@ docker compose pull # Update to latest version of Immich (if desired)
|
|||||||
docker compose create # Create Docker containers for Immich apps without running them.
|
docker compose create # Create Docker containers for Immich apps without running them.
|
||||||
docker start immich_postgres # Start Postgres server
|
docker start immich_postgres # Start Postgres server
|
||||||
sleep 10 # Wait for Postgres server to start up
|
sleep 10 # Wait for Postgres server to start up
|
||||||
gc "C:\path\to\backup\dump.sql" | docker exec -i immich_postgres psql --username=postgres # Restore Backup
|
gc "C:\path\to\backup\dump.sql" | docker exec -i immich_postgres psql --username=postgres # Restore Backup
|
||||||
docker compose up -d # Start remainder of Immich apps
|
docker compose up -d # Start remainder of Immich apps
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -9,6 +9,11 @@ When contributing code through a pull request, please check the following:
|
|||||||
- [ ] `npm run check:svelte` (Type checking via SvelteKit)
|
- [ ] `npm run check:svelte` (Type checking via SvelteKit)
|
||||||
- [ ] `npm test` (unit tests)
|
- [ ] `npm test` (unit tests)
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
- [ ] `npm run format` (formatting via Prettier)
|
||||||
|
- [ ] Update the `_redirects` file if you have renamed a page or removed it from the documentation.
|
||||||
|
|
||||||
:::tip AIO
|
:::tip AIO
|
||||||
Run all web checks with `npm run check:all`
|
Run all web checks with `npm run check:all`
|
||||||
:::
|
:::
|
||||||
|
@ -33,6 +33,11 @@ const guides: CommunityGuidesProps[] = [
|
|||||||
description: 'Documentation for simple podman setup using quadlets.',
|
description: 'Documentation for simple podman setup using quadlets.',
|
||||||
url: 'https://github.com/tbelway/immich-podman-quadlets/blob/main/docs/install/podman-quadlet.md',
|
url: 'https://github.com/tbelway/immich-podman-quadlets/blob/main/docs/install/podman-quadlet.md',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'Google Photos import + albums',
|
||||||
|
description: 'Import your Google Photos files into Immich and add your albums',
|
||||||
|
url: 'https://github.com/immich-app/immich/discussions/1340',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
function CommunityGuide({ title, description, url }: CommunityGuidesProps): JSX.Element {
|
function CommunityGuide({ title, description, url }: CommunityGuidesProps): JSX.Element {
|
||||||
|
@ -33,6 +33,11 @@ const projects: CommunityProjectProps[] = [
|
|||||||
description: 'A Python script to create albums based on the folder structure of an external library.',
|
description: 'A Python script to create albums based on the folder structure of an external library.',
|
||||||
url: 'https://github.com/Salvoxia/immich-folder-album-creator',
|
url: 'https://github.com/Salvoxia/immich-folder-album-creator',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'Immich-Tools',
|
||||||
|
description: 'Provides scripts for handling problems on the repair page.',
|
||||||
|
url: 'https://github.com/clumsyCoder00/Immich-Tools',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'Lightroom Publisher: mi.Immich.Publisher',
|
title: 'Lightroom Publisher: mi.Immich.Publisher',
|
||||||
description: 'Lightroom plugin to publish photos from Lightroom collections to Immich albums.',
|
description: 'Lightroom plugin to publish photos from Lightroom collections to Immich albums.',
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
folders that contain files you don't want to import, such as RAW files.
|
folders that contain files you don't want to import, such as RAW files.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
Add exclusion patterns. Globbing using *, **, and ? is supported. To ignore all files in any directory named "Raw",
|
Add exclusion patterns. Globbing using *, **, and ? is supported. To ignore all files in any directory named "Raw",
|
||||||
use "**/Raw/**". To ignore all files ending in ".tif", use "**/*.tif". To ignore an absolute path, use "/path/to/ignore".
|
use "**/Raw/**". To ignore all files ending in ".tif", use "**/*.tif". To ignore an absolute path, use "/path/to/ignore/**".
|
||||||
</p>
|
</p>
|
||||||
<div class="my-4 flex flex-col gap-2">
|
<div class="my-4 flex flex-col gap-2">
|
||||||
<label class="immich-form-label" for="exclusionPattern">Pattern</label>
|
<label class="immich-form-label" for="exclusionPattern">Pattern</label>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user