Skip to content

Latest commit

 

History

History
105 lines (84 loc) · 2.86 KB

README.md

File metadata and controls

105 lines (84 loc) · 2.86 KB

MintMoments - Web

Workspace Folder Structure

The webapp is organized as follows:

Here's the structure of your web application:

.
├── /app
│   ├── /(auth-pages) # Authentication-related pages
│   │   └── sign-in
│   │       └── otp
│   ├── /auth
│   │   └── confirm
│   │       └── user
│   ├── /css # Stylesheets
│   ├── /events
│   │   └── [slug]
│   │       └── @modal
│   │           └── (...)(auth-pages)
│   │               └── sign-in
│   ├── /api
│   │   └── chat
│   ├── /profile
│   │   └── [username]
│   └── /error
├── /components
│   ├── /pages # Page main sections components
│   │   └── sign-in
│   │       └── otp
│   ├── /ui # UI components coming from shadcn/ui
│   ├── /icons # SVG custom icons outside Lucide Icons
│   └── /shared
├── /lib
│   ├── /constants
│   ├── /hooks
│   ├── /supabase
│   └── utils.ts # Utility functions
├── /server # Socket.io server
├── /services # Supabase + Other services
├── /types
├── components.json
├── middleware.ts
├── next.config.js
├── next-env.d.ts
├── package.json
├── postcss.config.js
├── tailwind.config.ts
├── tsconfig.json
├── tsconfig.server.json
└── tsconfig.tsbuildinfo

How to Run Locally

  1. Clone the repository:

    git clone https://github.com/andlerrl/MintMoments.git mint-moments
    cd mint-moments
  2. Install dependencies:

    bun install
  3. Set up environment variables:

    • Copy .env.example to .env and populate it with your environment-specific values.
  4. Run the development server:

    bun run dev
  5. Build the project:

    bun run build
  6. Start the production server:

    bun start

Dependencies

The project uses the following dependencies:

For a complete list of dependencies, refer to the package.json file.