Skip to content

Commit

Permalink
Merge pull request #45 from Ditectrev/feature/add-azure-data-courses
Browse files Browse the repository at this point in the history
Feature/add azure data courses
  • Loading branch information
danieldanielecki authored Oct 29, 2024
2 parents 39f2808 + 72db471 commit 1836f5b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CloudMaster.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
ENABLE_PREVIEWS = YES;
Expand All @@ -791,7 +791,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
PRODUCT_NAME = "CloudMaster Swift";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -811,7 +811,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
ENABLE_PREVIEWS = YES;
Expand All @@ -827,7 +827,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
PRODUCT_NAME = "CloudMaster Swift";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
28 changes: 28 additions & 0 deletions CloudMaster/Constants/Courses.swift
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,34 @@ extension Course {
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Azure Data Engineer",
shortName: "DP-203",
description: "Validates expertise in data processing, integration, storage, security, and analytics using Azure data services.",
company: .azure,
repositoryURL: "https://github.com/Ditectrev/DP-203",
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-203/refs/heads/main/README.md",
url: "https://learn.microsoft.com/en-us/certifications/azure-data-engineer/",
exam: Exam(
quick: ExamDetail(time: 60, questionCount: 20),
intermediate: ExamDetail(time: 105, questionCount: 42),
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Azure Data Fundamentals",
shortName: "DP-900",
description: "Validates foundational knowledge of core data concepts and Microsoft Azure data services.",
company: .azure,
repositoryURL: "https://github.com/Ditectrev/DP-900",
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-900/main/README.md",
url: "https://learn.microsoft.com/en-us/certifications/azure-data-fundamentals/",
exam: Exam(
quick: ExamDetail(time: 60, questionCount: 20),
intermediate: ExamDetail(time: 105, questionCount: 42),
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Associate Cloud Engineer",
shortName: "ACE",
Expand Down

0 comments on commit 1836f5b

Please sign in to comment.