Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/warnigo/webfolio

[My personal portfolio]: ⛷️ Showcasing my coding skills and projects with a sleek, modern design. 🧩 Built using the latest web technologiesπŸ–₯️ to demonstrate my expertise and creativity. Explore my work and get to know my development styleπŸΏπŸ‘¨πŸ»β€πŸ’»!
https://github.com/warnigo/webfolio

fsd husky linting next-international next-themes nextjs react-query solid webpack zustand

Last synced: 21 days ago
JSON representation

[My personal portfolio]: ⛷️ Showcasing my coding skills and projects with a sleek, modern design. 🧩 Built using the latest web technologiesπŸ–₯️ to demonstrate my expertise and creativity. Explore my work and get to know my development styleπŸΏπŸ‘¨πŸ»β€πŸ’»!

Awesome Lists containing this project

README

        


Webfolio logo

## Stack technologies

- [React](https://react.dev/learn) + [Typescript](https://www.typescriptlang.org/docs/)
- [Zustand](https://docs.pmnd.rs/zustand/getting-started/introduction) - Small, fast, and scalable bearbones state management solution
- [React Hook Form](https://react-hook-form.com/) - Performant, flexible and extensible forms with
- [React Query](https://tanstack.com/query) - Automatically caches data from your queries, reducing the need for redundant network requests and improving application performance.
- [Tailwindcss](https://tailwindcss.com) - For styles
- [Nextjs](https://Nextjs.org/) - framework for SSR

> [!IMPORTANT]
> This code structure was created using FSD (Feature-Sliced Design). Please read the FSD documentation before making any changes. Tailwind CSS and shadcn-ui are used for UI components. Define any CSS units such as px, rem, etc., in globals.css. React Query is used for API integration.

## Basic requirements for the project

> [!NOTE]
> Version Node +v20\*

## For Developers

```bash
npm i
# and
npm run dev
# or
yarn install
# and
yarn dev
```

Run the project at [localhost:3000](http://localhost:3000)

### To launch the project in the production environment, run the command:

```bash
npm i
npm run build
npm run dev
# or
yarn install
yarn build
yarn dev
```

run the project at [localhost:3000](http://localhost:3000)

> [!NOTE]
> You need to create .env.development following the example of .env.example so that all parameters are

## Project structure (we will describe large sections separately inside the folder)

```
Root
β”œβ”€β”€ .hasky - Prehooks for commits
β”‚
β”œβ”€β”€ public - All public files that will be included in the production build
β”‚
β”œβ”€β”€ src - Development folder
β”‚ β”‚
β”‚ β”œβ”€β”€ api- Describes all back requests indicating the Endpoint for firebase
β”‚ β”‚
β”‚ β”œβ”€β”€ app - Here is the entire project structure by structure
β”‚ β”‚
β”‚ β”œβ”€β”€ assets - All images of the project should be in this folder
β”‚ β”‚
β”‚ β”œβ”€β”€ components - Components common to the project that are not included in the ui
β”‚ β”‚
β”‚ β”œβ”€β”€ constants - Common constants for the project that are used throughout the project
| |
β”‚ β”œβ”€β”€ helpers - Contains utility functions and code for auxiliary tasks throughout the project
β”‚ β”‚
β”‚ β”œβ”€β”€ layouts - For all layouts of the project
β”‚ β”‚
β”‚ β”œβ”€β”€ lib - Contains shared utility functions and reusable components.
| |
β”‚ β”œβ”€β”€ locales - All project language words are formed in this folder!
| |
β”‚ β”œβ”€β”€ pages - All page of the project, that is, all pages, the main code is created in this folder
| |
β”‚ β”œβ”€β”€ providers - All project providers are described and formed in this folder
β”‚ β”‚
β”‚ β”œβ”€β”€ shared - Components that are used throughout the project
β”‚ β”‚
β”‚ β”œβ”€β”€ stores - State management is written in this folder
β”‚ β”‚
β”‚ β”œβ”€β”€ styles - For globals css
β”‚ β”‚
β”‚ β”œβ”€β”€ types- General types by src
β”‚ β”‚
β”‚ └── widgets- Contains reusable UI components and widget implementations
β”‚
β”œβ”€β”€ .env.example - Example of environment variables for production.
β”œβ”€β”€ .eslintrc.json - Configuration for ESLint.
β”œβ”€β”€ .gitignore - Specifies which files and directories to ignore in Git.
β”œβ”€β”€ .npmrc - Configuration for npm, including registry settings and package behaviors.
β”œβ”€β”€ .prettierignore - Specifies which files and directories to ignore for Prettier formatting.
β”œβ”€β”€ tailwind.config.ts - Configuration for tailwind.
β”œβ”€β”€ .prettierrc - Configuration for Prettier formatting.
β”œβ”€β”€ next.config.ts - Configuration settings for Next.js.
β”œβ”€β”€ package.json - List of project dependencies and scripts.
β”œβ”€β”€ postcss.config.cjs - Configuration for PostCSS.
└── tsconfig.json - Configuration for TypeScript
```

#### ☝️ - IMPORTANT:

1. The names of folders and files are always in notation (kebab-case), except for components that are both folders and files in notation (PascalCase)
2. From the component, everything always imports from the index.ts file
3. Styles are always in tailwindcss
4. Interfaces in types.ts
5. constants in constants.tsx

## Code Review

1) If the code is not ready, then mark your PR as β€œDraft” with the β€œMark as draft” button
2) Considers Architectural, Structural and other agreements on the design of PR to be critical and for this is not passed further than PR
3) The remaining comments are purely advisory in nature and are not a blocker for PR
4) Any controversial issue is discussed by the team and if there is no violation of points 1-2, then this dispute is not blocked!

## ☝️ - IMPORTANT:

> - To type everything and anything that is possible is not to use ANY!
> - any enemy! - always discuss exceptions with the team!
> - avoid console.log if possible, in extreme cases console.error console.warn
> - mutate values ​​outside the mobx store (use exclusively actions from the mobx store for such things.)