Skip to content

Latest commit

 

History

History
109 lines (73 loc) · 2.58 KB

File metadata and controls

109 lines (73 loc) · 2.58 KB

Projeye Katkı Sağlayın

//TODO: DÜZENLENECEK

Kurulum Talimatları

Ön Gereklilikler

  • Node.js (version 16.x or later)
  • npm or yarn

Lokal Ortamda Çalıştırma

$ git clone https://github.com/Developer-MultiGroup/multigroup-event-page.git
$ cd multigroup-event-page
$ npm install
$ npm run dev

Geliştirme versiyonunu görmek için tarayıcınızda http://localhost:3000 adresine gidin.

Katkı

Kurulum talimatları'ndaki aşamaları uygulayarak projeyi lokal ortamınızda ayağa kaldırdıktan sonra istediğiniz değişiklikleri yapabilir ve istediğiniz hataları düzelterek Pull Request gönderebilirsiniz. PR göndermek için aşağıdaki adımları takip edin:

  1. Projenin bir Fork'unu oluşturun

  2. Yeni bir Branch oluşturun

    git checkout -b feature/your-feature
    # or
    git git checkout -b fix/your-fix
  3. Değişikliklerinizi yapın

  4. Değişikliklerinizi Commit olarak gönderin

    git add .
    git commit -m "feat: Add a descriptive commit message"
    # or
    git commit -m "fix: Add a descriptive commit message"
  5. Değişikliklerinizi Repository'ye yollayın

    git push origin feature/your-feature
  6. Pull Request açın Profilinizdeki bu projenin kendi Fork'undan ana Repository'ye bir PR oluşturun

Contribute to the Project

Installation Instructions

Prerequisites

  • Node.js (version 16.x or later)
  • npm or yarn

Running Locally

$ git clone https://github.com/Developer-MultiGroup/multigroup-event-page.git
$ cd multigroup-event-page
$ npm install
$ npm run dev

Visit http://localhost:3000 in your browser to see the development version.

Contributing

After setting up the project in your local environment by following the Installation Instructions, you can make any changes you want and fix any bugs by sending a Pull Request. Follow these steps to send a PR:

  1. Create a Fork of the project

  2. Create a new Branch

    git checkout -b feature/your-feature
    # or
    git git checkout -b fix/your-fix
  3. Make your changes

  4. Commit your changes

    git add .
    git commit -m "feat: Add a descriptive commit message"
    # or
    git commit -m "fix: Add a descriptive commit message"
  5. Push your changes to the Repository

    git push origin feature/your-feature
  6. Open a Pull Request Create a PR from your own Fork of this project in your profile to the main Repository