/nova

Primary LanguageTypeScript

NOVA

license last-commit repo-top-language repo-language-count

Developed with the software and tools below.

JavaScript PostCSS Autoprefixer React Axios
ESLint TypeScript Prisma Stripe JSON


🔗 Quick Links


📂 Repository Structure

└── nova/
    ├── README.md
    ├── app
    │   ├── (auth)
    │   │   └── (routes)
    │   │       ├── layout.tsx
    │   │       ├── sign-in
    │   │       │   └── [[...sign-in]]
    │   │       └── sign-up
    │   │           └── [[...sign-up]]
    │   ├── (dashboard)
    │   │   ├── (routes)
    │   │   │   ├── code
    │   │   │   │   ├── constants.ts
    │   │   │   │   └── page.tsx
    │   │   │   ├── conversation
    │   │   │   │   ├── constants.ts
    │   │   │   │   └── page.tsx
    │   │   │   ├── dashboard
    │   │   │   │   └── page.tsx
    │   │   │   ├── image
    │   │   │   │   ├── constants.ts
    │   │   │   │   └── page.tsx
    │   │   │   ├── music
    │   │   │   │   ├── constants.ts
    │   │   │   │   └── page.tsx
    │   │   │   ├── settings
    │   │   │   │   └── page.tsx
    │   │   │   └── video
    │   │   │       ├── constants.ts
    │   │   │       └── page.tsx
    │   │   └── layout.tsx
    │   ├── (landing)
    │   │   ├── layout.tsx
    │   │   └── page.tsx
    │   ├── api
    │   │   ├── code
    │   │   │   └── route.ts
    │   │   ├── conversation
    │   │   │   └── route.ts
    │   │   ├── image
    │   │   │   └── route.ts
    │   │   ├── music
    │   │   │   └── route.ts
    │   │   ├── stripe
    │   │   │   └── route.ts
    │   │   ├── video
    │   │   │   └── route.ts
    │   │   └── webhook
    │   │       └── route.ts
    │   ├── favicon.ico
    │   ├── globals.css
    │   └── layout.tsx
    ├── components
    │   ├── crisp-chat.tsx
    │   ├── crisp-provider.tsx
    │   ├── empty.tsx
    │   ├── freecounter.tsx
    │   ├── heading.tsx
    │   ├── landing-content.tsx
    │   ├── landing-hero.tsx
    │   ├── landing-navbar.tsx
    │   ├── mobile-sidebar.tsx
    │   ├── modal-provider.tsx
    │   ├── navbar.tsx
    │   ├── oader.tsx
    │   ├── pro-modal.tsx
    │   ├── sidebar.tsx
    │   ├── subscription-button.tsx
    │   ├── toaster-provider.tsx
    │   └── ui
    │       ├── badge.tsx
    │       ├── button.tsx
    │       ├── card.tsx
    │       ├── dialog.tsx
    │       ├── form.tsx
    │       ├── input.tsx
    │       ├── label.tsx
    │       ├── progress.tsx
    │       ├── select.tsx
    │       └── sheet.tsx
    ├── components.json
    ├── constants.ts
    ├── hooks
    │   └── use-pro-modal.tsx
    ├── lib
    │   ├── api-limit.ts
    │   ├── prisma.ts
    │   ├── stripe.ts
    │   ├── subscription.ts
    │   ├── tools.ts
    │   └── utils.ts
    ├── middleware.ts
    ├── next.config.mjs
    ├── package-lock.json
    ├── package.json
    ├── postcss.config.js
    ├── prisma
    │   └── schema.prisma
    ├── public
    │   ├── loader.jpg
    │   ├── logo.png
    │   ├── next.svg
    │   └── vercel.svg
    ├── tailwind.config.ts
    └── tsconfig.json

🚀 Getting Started

Requirements

Ensure you have the following dependencies installed on your system:

  • TypeScript: version x.y.z

⚙️ Installation

  1. Clone the nova repository:
git clone https://github.com/rish78/nova
  1. Change to the project directory:
cd nova
  1. Install the dependencies:
npm install

🤖 Running nova

Use the following command to run nova:

npm run build && node dist/main.js

🤝 Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines
  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
    git clone https://github.com/rish78/nova
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to GitHub: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.


📄 License

This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.