{"id":20795526,"url":"https://github.com/gurayalinn/arac","last_synced_at":"2026-05-25T04:05:02.034Z","repository":{"id":243506603,"uuid":"812610535","full_name":"gurayalinn/arac","owner":"gurayalinn","description":"Görsel Programlama 2 Final Projesi - Araç Satış Kiralama Otomasyonu","archived":false,"fork":false,"pushed_at":"2024-06-09T13:29:00.000Z","size":17600,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-18T11:23:12.518Z","etag":null,"topics":["dotnet","vbnet","visual-studio","visualbasic"],"latest_commit_sha":null,"homepage":"https://github.com/gurayalinn/arac/releases/download/first/arac-x64.zip","language":"Visual Basic .NET","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gurayalinn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-09T11:37:54.000Z","updated_at":"2024-06-09T13:29:04.000Z","dependencies_parsed_at":"2024-06-09T13:47:50.617Z","dependency_job_id":null,"html_url":"https://github.com/gurayalinn/arac","commit_stats":null,"previous_names":["gurayalinn/arac"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gurayalinn%2Farac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gurayalinn%2Farac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gurayalinn%2Farac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gurayalinn%2Farac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gurayalinn","download_url":"https://codeload.github.com/gurayalinn/arac/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243139391,"owners_count":20242553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotnet","vbnet","visual-studio","visualbasic"],"created_at":"2024-11-17T16:22:12.906Z","updated_at":"2025-12-26T04:44:52.008Z","avatar_url":"https://github.com/gurayalinn.png","language":"Visual Basic .NET","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🚀 Visual Basic .NET - MSSQL | Araç Satış/Kiralama Uygulaması\n\u003cp align=\"center\"\u003e\n  \u003cpicture\u003e\n\t\u003cimg src=\"https://github.com/gurayalinn/arac/assets/99608413/0638c7ec-0aef-41a0-ab05-918e910abc63\" width=66% height=auto alt=\"banner\" /\u003e\n\u003c/picture\u003e\n\u003c/p\u003e\n\n---\n\n\u003e **Note:** Bu proje, Visual Basic .NET ile SQLite/MSSQL veritabanı kullanarak araç satış ve kiralama işlemlerini gerçekleştiren otomasyon uygulamasıdır.\n\n## ⚙️ Kurulum:\n\n### 📝 Geliştirme Ortamı\n\n\u003e **Note:** Bu projeyi çalıştırmak için aşağıdaki yazılımların yüklü olması gerekmektedir.\n- 📦 Visual Studio 2022 - [Download](https://visualstudio.microsoft.com/tr/downloads/)\n- 📦 .Net 8.0 SDK - [Download](https://dotnet.microsoft.com/download/dotnet/8.0)\n- 📦 Git - [Download](https://git-scm.com/downloads)\n- 📦 SQLite - Projeye dahil\n- 📦 Docker Desktop (Opsiyonel)\n- 📦 MSSQL 2022 Server (Opsiyonel)\n- 📦 SQL Server Management Studio 20 (Opsiyonel)\n\n\u003e **Not:** SQL Server Bağlantısı:\n\n```vb\n' SQL Server Connection\nDim connectionString As String = \"Persist Security Info=False;User ID=sa;Password=!#1Password;Initial Catalog=arac;Server=127.0.0.1;Encrypt=False;\"\n```\n\n```powershell\n$ docker pull mcr.microsoft.com/mssql/server:2022-latest\n\n$ 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\n```\n\n- SSMS - Login\n- Server Type: Database Engine\n- Server name: 127.0.0.1, 1433\n- Authentication: SQL Server Authentication\n- Login: sa\n- Password: !#1Password\n- Connection Security - Encryption: Optional\n\n- 🌐 SQL Server [127.0.0.1:1433](http://127.0.0.1:1433) portunda çalışmaktadır.\n\n\u003e **Not:** SQLite Bağlantısı:\n\n```vb\n' SQLite Connection\nDim connectionString As String = \"Data Source=C:\\Users\\%USERPROFILE%\\arac\\db.sqlite3;Version=3;\"\n```\n\n```bash\n$ mkdir C:\\Users\\%USERPROFILE%\\arac\n$ sqlite3 C:\\Users\\%USERPROFILE%\\arac\\db.sqlite3\n```\n\n### 📦 Projeyi İndirme\n\n```bash\n$ git clone https://github.com/gurayalinn/arac.git\n$ cd arac\n```\n\n### 🚀 Proje gereksinimlerini yükleme ve çalıştırma\n\n```powershell\n$ dotnet restore\n\n$ dotnet build\n\n$ dotnet run\n\n$ dotnet test\n\n$ dotnet publish -c Release -o dist\n```\n\n### ⚡Projeyi Çalıştırma\n\n📦 arac-x64.zip - [Download](https://github.com/gurayalinn/arac/releases/download/first/arac-x64.zip)\n\n📦 .NET 8.0 - [Download](https://dotnet.microsoft.com/download/dotnet/8.0/)\n\n- .NET 8.0 SDK yüklü olmalıdır.\n- En az Windows 10 x64 işletim sistemi gereklidir.\n- İndirilen dosyayı açın ve `arac.exe` dosyasını çalıştırın.\n- Kullanıcı adı: `admin` ve şifre: `admin123` ile giriş yapabilirsiniz.\n\n---\n\n## 📃 LİSANS\n\n\u003cstrong\u003e \u0026copy; 2024\u003c/strong\u003e [APACHE-2.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgurayalinn%2Farac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgurayalinn%2Farac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgurayalinn%2Farac/lists"}