-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
31,392 additions
and
5 deletions.
There are no files selected for viewing
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,4 @@ | ||
node_modules | ||
*.js | ||
*.cjs | ||
*.ejs |
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 |
---|---|---|
@@ -1,34 +1,41 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
title: '[BUG]' | ||
labels: Bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Bug | ||
|
||
<!-- 발생 버그에 대해 설명해주세요 --> | ||
|
||
Desktop (please complete the following information): | ||
|
||
# Device | ||
|
||
<!-- 버그가 발생한 장치와 환경을 설명해주세요 --> | ||
|
||
<!-- Mobile --> | ||
|
||
OS: [e.g. iOS] | ||
Browser [e.g. chrome, safari] | ||
Smartphone (please complete the following information): | ||
|
||
<!-- Desktop --> | ||
|
||
OS: [e.g. iOS8.1] | ||
Browser [e.g. stock browser, safari] | ||
Device: [e.g. iPhone6] | ||
|
||
# Solution you'd like | ||
|
||
<!-- 예상 수정 방안을 작성해주세요 --> | ||
|
||
# Additional Comment | ||
|
||
<!-- 추가 코멘트가 있다면 작성해주세요 --> | ||
|
||
# References | ||
|
||
<!-- 관련 자료 및 문서가 있다면 기입해주세요 --> |
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 |
---|---|---|
@@ -1,21 +1,25 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "[FEAT]" | ||
title: '[FEAT]' | ||
labels: Feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Feature | ||
|
||
<!-- 관련 이슈에 대해 설명해주세요 --> | ||
|
||
# Todo List | ||
|
||
<!-- 작업 목록에 대해 설명해주세요 --> | ||
|
||
- [ ] todo | ||
|
||
# Additional Comment | ||
|
||
<!-- 추가 코멘트가 있다면 작성해주세요 --> | ||
|
||
# References | ||
|
||
<!-- 관련 자료 및 문서가 있다면 기입해주세요 --> |
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,38 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# Dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# Local env files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Testing | ||
coverage | ||
|
||
# Turbo | ||
.turbo | ||
|
||
# Vercel | ||
.vercel | ||
|
||
# Build Outputs | ||
.next/ | ||
out/ | ||
build | ||
dist | ||
|
||
|
||
# Debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Misc | ||
.DS_Store | ||
*.pem |
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,7 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint:style:fix | ||
npm run lint-front | ||
|
||
git diff --cached --name-only --diff-filter=ACM | xargs git add |
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 @@ | ||
"@titicaca/prettier-config-triple" |
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,105 @@ | ||
{ | ||
"extends": ["stylelint-config-standard"], | ||
"plugins": ["stylelint-order"], | ||
"customSyntax": "postcss-styled-syntax", | ||
"rules": { | ||
"declaration-empty-line-before": [ | ||
"always", | ||
{ | ||
"ignore": [ | ||
"first-nested", | ||
"after-comment", | ||
"after-declaration", | ||
"inside-single-line-block" | ||
] | ||
} | ||
], | ||
"order/order": ["custom-properties", "declarations"], | ||
|
||
"order/properties-order": [ | ||
{ | ||
"groupName": "Layout", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"display", | ||
"flex", | ||
"justify-content", | ||
"align-items", | ||
"gap", | ||
"visibility", | ||
"overflow", | ||
"float", | ||
"clear" | ||
] | ||
}, | ||
{ | ||
"groupName": "Position", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": ["position", "top", "right", "bottom", "left", "z-index"] | ||
}, | ||
{ | ||
"groupName": "Box", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"width", | ||
"height", | ||
"aspect-ratio", | ||
"margin", | ||
"margin-top", | ||
"margin-right", | ||
"margin-bottom", | ||
"margin-left", | ||
"padding", | ||
"padding-top", | ||
"padding-right", | ||
"padding-bottom", | ||
"padding-left" | ||
] | ||
}, | ||
{ | ||
"groupName": "Box", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"border", | ||
"border-radius", | ||
"border-top", | ||
"border-right", | ||
"border-bottom", | ||
"border-left" | ||
] | ||
}, | ||
{ | ||
"groupName": "Background", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": ["background-color", "background"] | ||
}, | ||
{ | ||
"groupName": "Font", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"color", | ||
"font-style", | ||
"font-weight", | ||
"font-size", | ||
"line-height", | ||
"letter-spacing", | ||
"text-align", | ||
"text-indent", | ||
"vertical-align", | ||
"white-space" | ||
] | ||
}, | ||
{ | ||
"groupName": "Animation", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": ["animation", "transition"] | ||
} | ||
] | ||
} | ||
} |
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,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
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 |
---|---|---|
@@ -1 +1,81 @@ | ||
# vook-client | ||
# Turborepo starter | ||
|
||
This is an official starter Turborepo. | ||
|
||
## Using this example | ||
|
||
Run the following command: | ||
|
||
```sh | ||
npx create-turbo@latest | ||
``` | ||
|
||
## What's inside? | ||
|
||
This Turborepo includes the following packages/apps: | ||
|
||
### Apps and Packages | ||
|
||
- `docs`: a [Next.js](https://nextjs.org/) app | ||
- `web`: another [Next.js](https://nextjs.org/) app | ||
- `@repo/ui`: a stub React component library shared by both `web` and `docs` applications | ||
- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) | ||
- `@repo/typescript-config`: `tsconfig.json`s used throughout the monorepo | ||
|
||
Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). | ||
|
||
### Utilities | ||
|
||
This Turborepo has some additional tools already setup for you: | ||
|
||
- [TypeScript](https://www.typescriptlang.org/) for static type checking | ||
- [ESLint](https://eslint.org/) for code linting | ||
- [Prettier](https://prettier.io) for code formatting | ||
|
||
### Build | ||
|
||
To build all apps and packages, run the following command: | ||
|
||
``` | ||
cd my-turborepo | ||
pnpm build | ||
``` | ||
|
||
### Develop | ||
|
||
To develop all apps and packages, run the following command: | ||
|
||
``` | ||
cd my-turborepo | ||
pnpm dev | ||
``` | ||
|
||
### Remote Caching | ||
|
||
Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines. | ||
|
||
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: | ||
|
||
``` | ||
cd my-turborepo | ||
npx turbo login | ||
``` | ||
|
||
This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). | ||
|
||
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo: | ||
|
||
``` | ||
npx turbo link | ||
``` | ||
|
||
## Useful Links | ||
|
||
Learn more about the power of Turborepo: | ||
|
||
- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks) | ||
- [Caching](https://turbo.build/repo/docs/core-concepts/caching) | ||
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) | ||
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering) | ||
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration) | ||
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference) |
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,8 @@ | ||
/** @type {import("eslint").Linter.Config} */ | ||
module.exports = { | ||
root: true, | ||
extends: ['@vook-client/eslint-config/react.js'], | ||
rules: { | ||
'@typescript-eslint/no-unsafe-assignment': 'off', | ||
}, | ||
} |
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,23 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
/package | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.history | ||
*.log | ||
|
||
# secrets | ||
secrets.*.js |
Oops, something went wrong.