https://github.com/gurayalinn/arac
Görsel Programlama 2 Final Projesi - Araç Satış Kiralama Otomasyonu
https://github.com/gurayalinn/arac
dotnet vbnet visual-studio visualbasic
Last synced: 9 days ago
JSON representation
Görsel Programlama 2 Final Projesi - Araç Satış Kiralama Otomasyonu
- Host: GitHub
- URL: https://github.com/gurayalinn/arac
- Owner: gurayalinn
- License: apache-2.0
- Created: 2024-06-09T11:37:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T13:29:00.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T11:23:12.518Z (over 1 year ago)
- Topics: dotnet, vbnet, visual-studio, visualbasic
- Language: Visual Basic .NET
- Homepage: https://github.com/gurayalinn/arac/releases/download/first/arac-x64.zip
- Size: 16.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🚀 Visual Basic .NET - MSSQL | Araç Satış/Kiralama Uygulaması

---
> **Note:** Bu proje, Visual Basic .NET ile SQLite/MSSQL veritabanı kullanarak araç satış ve kiralama işlemlerini gerçekleştiren otomasyon uygulamasıdır.
## ⚙️ Kurulum:
### 📝 Geliştirme Ortamı
> **Note:** Bu projeyi çalıştırmak için aşağıdaki yazılımların yüklü olması gerekmektedir.
- 📦 Visual Studio 2022 - [Download](https://visualstudio.microsoft.com/tr/downloads/)
- 📦 .Net 8.0 SDK - [Download](https://dotnet.microsoft.com/download/dotnet/8.0)
- 📦 Git - [Download](https://git-scm.com/downloads)
- 📦 SQLite - Projeye dahil
- 📦 Docker Desktop (Opsiyonel)
- 📦 MSSQL 2022 Server (Opsiyonel)
- 📦 SQL Server Management Studio 20 (Opsiyonel)
> **Not:** SQL Server Bağlantısı:
```vb
' SQL Server Connection
Dim connectionString As String = "Persist Security Info=False;User ID=sa;Password=!#1Password;Initial Catalog=arac;Server=127.0.0.1;Encrypt=False;"
```
```powershell
$ docker pull mcr.microsoft.com/mssql/server:2022-latest
$ docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=!#1Password" -p 1433:1433 --name mssql --hostname mssql -d mcr.microsoft.com/mssql/server:2022-latest
```
- SSMS - Login
- Server Type: Database Engine
- Server name: 127.0.0.1, 1433
- Authentication: SQL Server Authentication
- Login: sa
- Password: !#1Password
- Connection Security - Encryption: Optional
- 🌐 SQL Server [127.0.0.1:1433](http://127.0.0.1:1433) portunda çalışmaktadır.
> **Not:** SQLite Bağlantısı:
```vb
' SQLite Connection
Dim connectionString As String = "Data Source=C:\Users\%USERPROFILE%\arac\db.sqlite3;Version=3;"
```
```bash
$ mkdir C:\Users\%USERPROFILE%\arac
$ sqlite3 C:\Users\%USERPROFILE%\arac\db.sqlite3
```
### 📦 Projeyi İndirme
```bash
$ git clone https://github.com/gurayalinn/arac.git
$ cd arac
```
### 🚀 Proje gereksinimlerini yükleme ve çalıştırma
```powershell
$ dotnet restore
$ dotnet build
$ dotnet run
$ dotnet test
$ dotnet publish -c Release -o dist
```
### ⚡Projeyi Çalıştırma
📦 arac-x64.zip - [Download](https://github.com/gurayalinn/arac/releases/download/first/arac-x64.zip)
📦 .NET 8.0 - [Download](https://dotnet.microsoft.com/download/dotnet/8.0/)
- .NET 8.0 SDK yüklü olmalıdır.
- En az Windows 10 x64 işletim sistemi gereklidir.
- İndirilen dosyayı açın ve `arac.exe` dosyasını çalıştırın.
- Kullanıcı adı: `admin` ve şifre: `admin123` ile giriş yapabilirsiniz.
---
## 📃 LİSANS
© 2024 [APACHE-2.0](LICENSE)