cursor-boilerplate 0.7.6__tar.gz → 0.7.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/PKG-INFO +1 -1
  2. cursor_boilerplate-0.7.7/cursor_boilerplate/.cursor/rules/vercel_nextjs.mdc +45 -0
  3. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/PKG-INFO +1 -1
  4. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/SOURCES.txt +2 -1
  5. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/pyproject.toml +1 -1
  6. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/README.md +0 -0
  7. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate/.cursor/rules/always.mdc +0 -0
  8. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate/.cursor/rules/fastapi.mdc +0 -0
  9. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate/.cursor/rules/task.mdc +0 -0
  10. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate/__init__.py +0 -0
  11. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate/cli.py +0 -0
  12. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/dependency_links.txt +0 -0
  13. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/entry_points.txt +0 -0
  14. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/requires.txt +0 -0
  15. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/cursor_boilerplate.egg-info/top_level.txt +0 -0
  16. {cursor_boilerplate-0.7.6 → cursor_boilerplate-0.7.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cursor-boilerplate
3
- Version: 0.7.6
3
+ Version: 0.7.7
4
4
  Summary: A boilerplate project for Cursor IDE
5
5
  Author-email: Your Name <your.email@example.com>
6
6
  License: MIT
@@ -0,0 +1,45 @@
1
+ ---
2
+ description:
3
+ globs:
4
+ alwaysApply: false
5
+ ---
6
+ # Vercel 기반의 Next.js 프로젝트
7
+
8
+ ### next.config.js
9
+ - exportTrailingSlash, output: 'export' 옵션 검토
10
+ - rewrites 설정 여부 확인
11
+
12
+ ### vercel.json
13
+ - 모든 경로를 `/index.html`로 리다이렉트 설정
14
+ ```json
15
+ {
16
+ "rewrites": [
17
+ { "source": "/(.*)", "destination": "/index.html" }
18
+ ]
19
+ }
20
+ ```
21
+
22
+ ### pages/
23
+ - getServerSideProps, getStaticProps 사용 없이 작성
24
+ - 클라이언트 사이드 라우팅 구성
25
+
26
+ ### components/
27
+ - 재사용 가능한 컴포넌트로 분리
28
+ - TailwindCSS 또는 CSS Modules 사용
29
+
30
+ ### public/
31
+ - 정적 파일 (이미지, 파비콘 등) 저장
32
+ - 이미지 최적화 (WebP 권장)
33
+
34
+ ### styles/
35
+ - 글로벌 스타일과 컴포넌트별 스타일 구분
36
+ - TailwindCSS 설정 적용 여부 확인
37
+
38
+ ### lib/
39
+ - 공통 유틸리티 함수 작성
40
+ - 비즈니스 로직과 분리 유지
41
+
42
+ ### README.md
43
+ - 사용 스택 (Next.js, Vercel, TailwindCSS 등) 명시
44
+ - 배포 방법, SPA 구성 방법 기록
45
+ - 라우팅 및 폼 처리 방식 설명
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cursor-boilerplate
3
- Version: 0.7.6
3
+ Version: 0.7.7
4
4
  Summary: A boilerplate project for Cursor IDE
5
5
  Author-email: Your Name <your.email@example.com>
6
6
  License: MIT
@@ -10,4 +10,5 @@ cursor_boilerplate.egg-info/requires.txt
10
10
  cursor_boilerplate.egg-info/top_level.txt
11
11
  cursor_boilerplate/.cursor/rules/always.mdc
12
12
  cursor_boilerplate/.cursor/rules/fastapi.mdc
13
- cursor_boilerplate/.cursor/rules/task.mdc
13
+ cursor_boilerplate/.cursor/rules/task.mdc
14
+ cursor_boilerplate/.cursor/rules/vercel_nextjs.mdc
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cursor-boilerplate"
7
- version = "0.7.6"
7
+ version = "0.7.7"
8
8
  description = "A boilerplate project for Cursor IDE"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.6"