Skip to content

Commit

Permalink
Revert "Update README.md"
Browse files Browse the repository at this point in the history
This reverts commit 9a321e6.
  • Loading branch information
gkhaavik committed Oct 18, 2024
1 parent 950b987 commit 9bcb7db
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
# COMMERCIFY-WEB

COMMERCIFY-WEB is a comprehensive e-commerce solution with separate client and admin interfaces, built using Next.js.

## Project Structure

```
COMMERCIFY-WEB/
├── .next/ # Next.js build output
├── mysql-init-scripts/ # MySQL initialization scripts
├── node_modules/ # Node.js dependencies
├── src/ # Source code
│ └── app/ # Main application code
│ ├── (client)/ # Client-facing application (your own implementation)
│ ├── admin/ # Admin dashboard
│ ├── fonts/ # Custom fonts
│ ├── components/ # Shared React components
│ ├── context/ # React context providers
│ ├── lib/ # Utility functions and libraries
│ └── types/ # TypeScript type definitions
├── .env # Environment variables (not in version control)
├── .env.example # Example environment variable file
├── .eslintrc.json # ESLint configuration
├── .gitignore # Git ignore file
├── docker-compose.yml # Docker Compose configuration
├── next.config.mjs # Next.js configuration
├── package.json # Project dependencies and scripts
├── postcss.config.mjs # PostCSS configuration
├── README.md # This file
├── tailwind.config.ts # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration
```

## Prerequisites

- Node.js (v14 or later)
Expand Down

0 comments on commit 9bcb7db

Please sign in to comment.