Skip to content

Commit 87e12cd

Browse files
committed
Update README.md file and Git Ignore file.
1 parent c35c127 commit 87e12cd

File tree

2 files changed

+29
-34
lines changed

2 files changed

+29
-34
lines changed

.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,7 @@ dist-ssr
1313
*.local
1414

1515
# Environment variables
16-
.env
17-
.env.local
18-
!.env.development
19-
.env.production
20-
.env.development.local
21-
.env.production.local
16+
.env*
2217
!.env.example
2318

2419
# Editor directories and files

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ A modern terminal-inspired portfolio and resume website showcasing interactive a
4545

4646
### Testing & Quality
4747

48-
- Vitest + Playwright
49-
- Storybook
48+
- Vitest + Playwright (WIP)
49+
- Storybook (WIP)
5050
- ESLint + Stylelint
5151

5252
## 📦 Installation
@@ -87,32 +87,32 @@ pnpm storybook
8787
## 📂 Project Structure
8888

8989
```
90-
├── public/ # Static assets and favicon
91-
├── schemas/ # JSON schemas for validation
92-
├── scripts/ # Build and utility scripts
93-
├── src/ # Source code
94-
│ ├── commands/ # Terminal command implementations
95-
│ ├── components/ # React components
96-
│ │ ├── ui/ # Core UI components
97-
│ │ └── animations/# Animation components
98-
│ ├── data/ # Static data and content
99-
│ ├── errors/ # Error handling and boundary components
100-
│ ├── hooks/ # Custom React hooks
101-
│ ├── integrations/ # Third-party integrations
102-
│ ├── lib/ # Utility libraries
103-
│ ├── pages/ # Page components
104-
│ ├── presets/ # Configuration presets
105-
│ ├── services/ # API services
106-
│ ├── stories/ # Storybook stories
107-
│ ├── types/ # TypeScript type definitions
108-
│ └── utils/ # Utility functions
109-
├── supabase/ # Supabase configuration
110-
├── .env.example # Example environment variables
111-
├── index.html # Application entry point
112-
├── package.json # Project dependencies
113-
├── tailwind.config.js # Tailwind CSS configuration
114-
├── tsconfig.json # TypeScript configuration
115-
└── vite.config.ts # Vite configuration
90+
├── public/ # Static assets and favicon
91+
├── schemas/ # JSON schemas for validation
92+
├── scripts/ # Build and utility scripts
93+
├── src/ # Source code
94+
│ ├── commands/ # Terminal command implementations
95+
│ ├── components/ # React components
96+
│ │ ├── ui/ # Core UI components
97+
│ │ └── animations/ # Animation components
98+
│ ├── data/ # Static data and content
99+
│ ├── errors/ # Error handling and boundary components
100+
│ ├── hooks/ # Custom React hooks
101+
│ ├── integrations/ # Third-party integrations
102+
│ ├── lib/ # Utility libraries
103+
│ ├── pages/ # Page components
104+
│ ├── presets/ # Configuration presets
105+
│ ├── services/ # API services
106+
│ ├── stories/ # Storybook stories
107+
│ ├── types/ # TypeScript type definitions
108+
│ └── utils/ # Utility functions
109+
├── supabase/ # Supabase configuration
110+
├── .env.example # Example environment variables
111+
├── index.html # Application entry point
112+
├── package.json # Project dependencies
113+
├── tailwind.config.js # Tailwind CSS configuration
114+
├── tsconfig.json # TypeScript configuration
115+
└── vite.config.ts # Vite configuration
116116
```
117117

118118
## 📚 Code Standards

0 commit comments

Comments
 (0)