Skip to content

Commit

Permalink
docs: update README (#102)
Browse files Browse the repository at this point in the history
## Context

This pull-request updates the README file

## Changes

- Updated `README.md`

## Checklist

- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] I have tested my code for breaking changes and added the
corresponding footer in this PR if needed
- [x] I have added tests that prove my fix is effective or that my
feature works
  • Loading branch information
remcolakens authored Jun 27, 2024
1 parent 71094b8 commit fb64ff8
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,44 +25,43 @@
```bash
├── .github # Workflows for Github Actions
├── .husky # Git hooks
├── app # Pages folder
├── __tests__ # Test folder
│ └── __snapshots__ # Snapshot folder
│ └── snapshot.tsx.snap # The saved snapshots
│ └── index.test.tsx # Sample test file
│ ├── components # Components folder
│ ├── lib # Library folder
│ ├── svgs # SVG folder
│ ├── favicon.ico # The favicon
│ ├── globals.css # The main css file to configure globals such a tailwind
│ ├── layout.tsx # The main layout files
│ └── page.tsx # Sample page
├── docs # Documentation
│ └── CHANGELOG.md # the changelog
│ └── ci.md # docs for CI
│ └── commit-convention.md # docs for commit convention
├── e2e # E2E tests
│ └── example.spec.ts # Example E2E test
├── public # Folder for static assets
├── src # Source folder
│ ├── __tests__ # Test folder
│ ├── app # App folder
│ ├── components # Components folder
│ ├── lib # Lib folder
│ └── svgs # SVGs folder
├── .commitlintrc # commitlint config (package)
├── .czrc # Config to commitizen
├── .editorconfig # Config to normalize editors
├── .env.example # Example file with required .env variables
├── .eslintrc # Eslint config
├── .gitignore # Files that will be ignored by git
├── .lintstagedrc.js # Config file for "lint-staged" (package)
├── .npmrc # Config file for npm
├── .nvmrc # Compatible node version
├── .prettierignore # Files that will be ignored by Prettier (package)
├── .prettierrc # Prettier config (package)
├── .releaserc # semantic-release config
├── .svgrrc # config for SVGR
├── CODE_OF_CONDUCT # the CODE OF CONDUCT
├── CODE_OF_CONDUCT.md # the CODE OF CONDUCT
├── LICENSE # License information
├── README.md # README documentation
├── components.json # Shadcn UI config
├── jest.config.js # Config file for jest
├── jest.setup.js # Used for __tests__/testing-library.js
├── LICENSE # License information
├── next-env.d.ts # Next.js Typescript declaration file (leave unchanged)
├── package.json # The package.json of this project
├── playwright.config.ts # Config file for playwright
├── pnpm-lock.yaml # Lock file for packages (leave unchanged)
├── postcss.config.js # the postcss config file
├── README.md # README documentation
├── tailwind.config.ts # the tailwind css config
└── tsconfig.json # Typescript config
```
Expand All @@ -76,35 +75,27 @@ If you are new to pnpm you need to [install it on your local machine](https://pn

```bash
# Install dependencies

pnpm install

# Install playwright for end-to-end tests

pnpm exec playwright install --with-deps

# Start local webserver at port 3000

pnpm dev

# Run linters

pnpm lint

# Run unit tests

pnpm test

# Run end-to-end tests

pnpm test:e2e

# Build app for production (gets output in the 'dist' directory)

pnpm build

# Start production server

pnpm start
```

Expand Down

0 comments on commit fb64ff8

Please sign in to comment.