From 8f202ac0f9a5cb00a7458b3cf849dad4bf44bf04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Yafes=20Akba=C5=9F?= <62028911+might4@users.noreply.github.com> Date: Mon, 31 Jan 2022 17:40:09 +0300 Subject: [PATCH 1/3] Update setup.sh --- setup.sh | 52 +++++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/setup.sh b/setup.sh index 8321c28..11f8ae9 100644 --- a/setup.sh +++ b/setup.sh @@ -4,55 +4,57 @@ bold=$(tput bold) normal=$(tput sgr0) clear -echo "Lütfen mysql root kullanıcı parolanızı girin" +echo "Please enter your MySQL root password:" mysql_config_editor set --login-path=periodum --host=localhost --user=root --password --skip-warn >/dev/null clear -echo "Bu işlem uzun sürebilir! Lütfen ${bold}'Kurulum tamamlandı!'${normal} yazısını görene kadar bekleyin!" +echo "This process might take a while! Please wait until the line: ${bold}'Setup Complete!'${normal}" echo '' -echo 'Kurulum yapılıyor...' +echo 'Starting Setup...' echo '' -echo 'Veritabanı oluşturuluyor...' +echo 'Creating Database...' echo '' -mysql --login-path=periodum -e "CREATE DATABASE periodum /*\!40100 DEFAULT CHARACTER SET utf8 */;" >/dev/null || { echo 'Veritabanı oluşturulamadı!' ; exit 1; } -echo 'Veritabanı oluşturuldu.' +mysql --login-path=periodum -e "CREATE DATABASE periodum /*\!40100 DEFAULT CHARACTER SET utf8 */;" >/dev/null || { echo 'Failed to create Database!' ; exit 1; } +echo 'Database successfully created.' echo '' -echo 'Veritabanı için kullanıcı oluşturuluyor...' +echo 'Creating a new user for Database...' echo '' -mysql --login-path=periodum -e "CREATE USER 'periodum'@'localhost' IDENTIFIED BY '1234Periodum';" >/dev/null || { echo 'Periodum kullanıcısı oluşturulamadı!' ; exit 1; } -echo 'Kullanıcı oluşturuldu.' +mysql --login-path=periodum -e "CREATE USER 'periodum'@'localhost' IDENTIFIED BY '1234Periodum';" >/dev/null || { echo 'Failed to create User!' ; exit 1; } +echo 'User successfully created.' echo '' -echo 'Veritabanı kullanıcısı yetkilendiriliyor...' +echo 'Authorizing User...' echo '' -mysql --login-path=periodum -e "GRANT ALL PRIVILEGES ON periodum.* TO 'periodum'@'localhost';" >/dev/null || { echo 'Kullanıcıya izinler sağlanamadı!' ; exit 1; } -echo 'Kullanıcıya tüm izinler verildi.' +mysql --login-path=periodum -e "GRANT ALL PRIVILEGES ON periodum.* TO 'periodum'@'localhost';" >/dev/null || { echo 'Failed to authorize User!' ; exit 1; } +echo 'User successfully authorized.' echo '' -echo 'Kullancının veritabanındaki izinleri ayarlanıyor...' +echo 'Adding Database privileges to the User...' echo '' -mysql --login-path=periodum -e "FLUSH PRIVILEGES;" >/dev/null || { echo 'Kullanıcı izinleri yüklenemedi!' ; exit 1; } -echo 'Kullancının izinleri yeniden yüklendi.' +mysql --login-path=periodum -e "FLUSH PRIVILEGES;" >/dev/null || { echo 'Failed to add privileges to the User!' ; exit 1; } +echo 'Database privileges successfully added.' echo '' -echo 'Veritabanına veriler yükleniyor...' +echo 'Importing Data to Database...' echo '' -mysql --login-path=periodum periodum < ./db.sql >/dev/null || { echo 'Veriler yüklenemedi!' ; exit 1; } -echo 'Veritabanına veriler yüklendi.' +mysql --login-path=periodum periodum < ./db.sql >/dev/null || { echo 'Failed to import Data!' ; exit 1; } +echo 'Data successfully imported to Database.' echo '' # Environment Setup -echo '.env dosyası oluşturuluyor...' +echo 'Creating .env(Enviorement Variables) file...' echo '' -cp ./.env.development ./.env >/dev/null || { echo '.env dosyası oluşturulamadı!' ; exit 1; } -echo '.env dosyası oluşturuldu.' +cp ./.env.development ./.env >/dev/null || { echo 'Failed to create .env file!' ; exit 1; } +echo '.env file successfully created.' echo '' # Load packages -echo 'Paketler yükleniyor...' +echo 'Installing Packages...' echo '' -yarn >/dev/null || { echo 'Paketler yüklenemedi!' ; exit 1; } -echo 'Paketler yüklendi.' +yarn >/dev/null || { echo 'Failed to install Packeges!' ; exit 1; } +echo 'Packages successfully installed.' echo '' -echo "${bold}Kurulum tamamlandı!${normal} Sonraki adımları takip edebilirsiniz." +echo "${bold}Setup Complete!${normal}" +echo '' +echo 'Now you can follow the next steps.' From 9c7b1e40f344b4c08e8781f7a7a931e89b35c5a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Yafes=20Akba=C5=9F?= <62028911+might4@users.noreply.github.com> Date: Mon, 31 Jan 2022 18:06:52 +0300 Subject: [PATCH 2/3] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 38 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index cfd453c..a873d94 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,32 +1,32 @@ -# Açıklama +# Explanation - + -**Alakalı Hata (Issue):** # +**Related Issue:** # -## Değişiklik Tipi +## Category of Thing You Changed: -- [ ] Hata düzeltimi (belirli bir hatayı (issue) düzelten değişiklikler) -- [ ] Yeni özellik (eklenmiş olan yeni fonksiyonel değişiklikler) -- [ ] Döküman veya yapılandırma dosyaları değişiklikleri +- [ ] Bug Fix +- [ ] Feature +- [ ] Documentation -## Ekler +## Aditional Information: - + -# Nasıl Test Edilir? +# How to test? - -# Kontrol Listesi: +# Checklist: -- [ ] Kodum bu projenin kod formatı kurallarına uygun. -- [ ] Kodumu inceledim. -- [ ] Özellikle anlaşılması güç olabilen alanlar için yorumlar bıraktım. -- [ ] Gerekliyse, dökümanlari güncelledim. -- [ ] Değişikliklerim yeni hatalara sebep olmuyor. -- [ ] Değişiklerim doğrultusunda testler ekledim veya testleri güncelledim. -- [ ] Varsa, değişikliklerime bağlı, diğer değişikliklerin tümü hali hazırda ana branch'te mevcut. +- [ ] My code complies with this project's code format guidelines. +- [ ] I reviewed my code. +- [ ] I left code comments for areas that may be difficult to understand. +- [ ] If necessary, I have updated the documentation. +- [ ] Changes I made are not producing new issues. +- [ ] I added or updated tests based on my changes. +- [ ] If there's any, all changes related to my changes are already in main branch. From 566937dfe8253031c38395e9d9502ab84bfdacdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Yafes=20Akba=C5=9F?= <62028911+might4@users.noreply.github.com> Date: Mon, 31 Jan 2022 21:19:14 +0300 Subject: [PATCH 3/3] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a873d94..7df3010 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ **Related Issue:** # -## Category of Thing You Changed: +## Change Category: - [ ] Bug Fix - [ ] Feature @@ -23,10 +23,10 @@ # Checklist: -- [ ] My code complies with this project's code format guidelines. +- [ ] My code complies with this project's code formatting guidelines. - [ ] I reviewed my code. -- [ ] I left code comments for areas that may be difficult to understand. -- [ ] If necessary, I have updated the documentation. -- [ ] Changes I made are not producing new issues. +- [ ] I added comments especially in portions that may be difficult to understand. +- [ ] If necessary, I updated the documentation. +- [ ] Changes I made do not produce new issues. - [ ] I added or updated tests based on my changes. -- [ ] If there's any, all changes related to my changes are already in main branch. +- [ ] If any, all changes related to my changes are already present in the main branch.