-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from byte-abc/bichi/dev
nuxt server 추가
- Loading branch information
Showing
37 changed files
with
1,052 additions
and
1,997 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,7 @@ logs | |
!.env.example | ||
|
||
# graphql codegen | ||
/queries/codegen.ts | ||
/queries/codegen.ts | ||
|
||
# docker db volumes | ||
.db-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nuxt Full Stack Web Application | ||
|
||
## server nitro x apollo-server x type-graphql x prisma | ||
|
||
## client nuxt x apollo-client x tailwind |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Research | ||
|
||
한번 써보고 싶은 리스트 | ||
|
||
## 써볼꺼 Retake - Postgres용 하이브리드 검색 오픈소스 | ||
https://github.com/getretake/retake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script setup lang="ts"> | ||
import {useCom1} from '~/use/use-com1' | ||
const props = defineProps({}) | ||
const emit = defineEmits([]) | ||
const com1 = useCom1() | ||
onMounted(() => { | ||
com1.bar = 'bar!' | ||
}) | ||
onUnmounted(() => { | ||
com1.bar = '' | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script setup lang="ts"> | ||
import {useCom1} from '~/use/use-com1' | ||
const props = defineProps({}) | ||
const emit = defineEmits([]) | ||
const com1 = useCom1() | ||
onMounted(() => { | ||
com1.foo = 'foo!' | ||
}) | ||
onUnmounted(() => { | ||
com1.foo = '' | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: "3" | ||
services: | ||
db: | ||
image: postgres:latest | ||
container_name: postgres | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRES_USER: "user" | ||
POSTGRES_PASSWORD: "pa22w0rd" | ||
volumes: | ||
- ./.db-data/:/var/lib/postgresql/data |
Oops, something went wrong.