0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-04 02:11:44 -05:00
immich/web
Alex f980a2f27a
Add asset repository and refactor asset service (#540)
* build endpoint to get asset count by month

* Added asset repository

* Added create asset

* get asset by device ID

* Added test for existing methods

* Refactor additional endpoint

* Refactor database api to get curated locations and curated objects

* Refactor get search properties

* Fixed cookies parsing for websocket

* Added API to get asset count by time group

* Remove unused code
2022-08-26 22:53:37 -07:00
..
src Add asset repository and refactor asset service (#540) 2022-08-26 22:53:37 -07:00
static
.dockerignore
.eslintignore
.eslintrc.cjs
.gitignore
.npmrc
.prettierignore
.prettierrc
Dockerfile
entrypoint.sh
package-lock.json Migrate SvelteKit to the latest version 431 (#526) 2022-08-24 21:10:48 -07:00
package.json Migrate SvelteKit to the latest version 431 (#526) 2022-08-24 21:10:48 -07:00
postcss.config.cjs Use cookies for client requests (#377) 2022-07-26 12:28:07 -05:00
README.md
svelte.config.js
tailwind.config.cjs Use cookies for client requests (#377) 2022-07-26 12:28:07 -05:00
tsconfig.json Use cookies for client requests (#377) 2022-07-26 12:28:07 -05:00
vite.config.js

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.