Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ExoPlayer
- video caching
- 안드로이드
- 유튜브
- build with ai
- 시행착오
- android custom view
- Zsh
- android ktor
- ChatGPT
- ListAdapter
- 스피너
- Python
- FastAPI
- DiffUtil.ItemCallback
- kotlin collection
- ktor client
- kotlin list
- 유튜브 요약
- ListAdapter DiffUtil
- exoplayer cache
- ktor api call
- doc2vec
- AWS EC2
- list map
- android exoplayer
- getChangePayload
- llm
- map
- android
Archives
- Today
- Total
목록svelte (1)
버튼 수집상
[웹] Svelte 를 찍먹해봤다.
여타 프론트엔드 프레임워크처럼 Node.js로 돌리는 줄 알았는데, 그건 개발단계에서만 그렇고, 배포할 때는 .svelte 확장자 파일을 전부 css, js 파일로 빌드해서 정적파일로 배포할 수 있다고 한다. 그래서 FastAPI + uvicorn 환경에서 정적파일을 리턴하는 식으로 FrontEnd를 구성할 수도 있었다. import FastAPI from fastapi.staticfiles import StaticFiles app = FastAPI() #html 파일을 띄우는데 필요한 assets app.mount("/assets",StaticFiles(directory="assets")) #html 파일 경로 리턴 app.mount("/",StaticFiles(directory="pages",html..
TIL - 웹개발
2024. 3. 22. 17:00