mirror of
https://github.com/immich-app/immich.git
synced 2025-12-05 12:23:58 +09:00
* chore(docs): refactor pages * fix: links * fix: broken link * refactor: post install steps using partials
40 lines
878 B
Markdown
40 lines
878 B
Markdown
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
# Architecture
|
|
|
|
## High Level Diagram
|
|
|
|

|
|
|
|
## Technology
|
|
|
|
Immich is a full-stack [TypeScript](https://www.typescriptlang.org/) application, with a [Flutter](https://flutter.dev/) mobile app.
|
|
|
|
### Mobile
|
|
|
|
- [Flutter](https://flutter.dev/)
|
|
- [Riverpod](https://riverpod.dev/) for state management.
|
|
|
|
### Web
|
|
|
|
- [SvelteKit](https://kit.svelte.dev/)
|
|
- [tailwindcss](https://tailwindcss.com/)
|
|
|
|
### Server
|
|
|
|
- [Node.js](https://nodejs.org/)
|
|
- [Nest.js](https://nestjs.com/)
|
|
- [TypeORM](https://typeorm.io/) for database management.
|
|
- [Jest](https://jestjs.io/) for testing.
|
|
|
|
### Database
|
|
|
|
- [PostgreSQL](https://www.postgresql.org/)
|
|
- [Redis](https://redis.io/) for job queuing.
|
|
|
|
### Web Server
|
|
|
|
- [NGINX](https://www.nginx.com/) for internal communication between containers and load balancing when scaling.
|