From 3f8489aae1043fbc81054f7600bc418314f40fb8 Mon Sep 17 00:00:00 2001 From: JustDontsnitchonme Date: Fri, 24 May 2024 14:41:35 -0700 Subject: [PATCH 1/4] Create Test --- Test | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Test diff --git a/Test b/Test new file mode 100644 index 00000000..570b6dae --- /dev/null +++ b/Test @@ -0,0 +1,4 @@ +curl --request GET \ + --url https://api.cloudflare.com/client/v4/accounts/account_id/devices/dex_tests \ + --header 'Content-Type: application/json' \ + --header 'X-Auth-Email: ' From 244a74d9f1eaf0a2ce0b3d2bb1969c827db1e6bc Mon Sep 17 00:00:00 2001 From: JustDontsnitchonme Date: Fri, 24 May 2024 14:42:16 -0700 Subject: [PATCH 2/4] Create Create --- Create | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Create diff --git a/Create b/Create new file mode 100644 index 00000000..29647139 --- /dev/null +++ b/Create @@ -0,0 +1,5 @@ +$key = new Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey'); +$adapter = new Cloudflare\API\Adapter\Guzzle($key); +$user = new Cloudflare\API\Endpoints\User($adapter); + +echo $user->getUserID(); From 157b5b5e622cc66414baa496df8f852959ea023b Mon Sep 17 00:00:00 2001 From: JustDontsnitchonme Date: Fri, 24 May 2024 14:44:17 -0700 Subject: [PATCH 3/4] Create devcontainer.json --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..ad93c14a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + } +} From ccb8f3e2ea16f181c7e5fe038460066135952532 Mon Sep 17 00:00:00 2001 From: JustDontsnitchonme Date: Fri, 24 May 2024 14:45:05 -0700 Subject: [PATCH 4/4] Add files via upload --- .devcontainer/_config.yml | 65 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .devcontainer/_config.yml diff --git a/.devcontainer/_config.yml b/.devcontainer/_config.yml new file mode 100644 index 00000000..f8cf0b94 --- /dev/null +++ b/.devcontainer/_config.yml @@ -0,0 +1,65 @@ +# Site settings +title: Development containers +description: > + Development containers documentation and specification page. + +# baseurl: / # the subpath of your site, e.g. /blog/ +url: https://devcontainers.github.io # the base hostname & protocol for your site +git_address: https://github.com/devcontainers/devcontainers.github.io +git_edit_address: https://github.com/devcontainers/devcontainers.github.io/settings/pages/blob/gh-pages +theme_color: 2753E3 + +# Build settings +markdown: kramdown +highlighter: rouge + +plugins: + - github-pages + - jemoji + - jekyll-feed + + +exclude: + - Gemfile + - Gemfile.lock + - .idea/ + - .gitignore + - README.md + - resources + +timezone: Europe/Zurich + +defaults: +- scope: + path: _posts + type: posts + values: + layout: post + sectionid: guide + +- scope: + path: _docs + type: docs + values: + layout: docs + sectionid: docs + seo: + type: "WebPage" + +- scope: + path: _implementors + type: implementors + values: + layout: implementors + sectionid: implementors + +collections: + docs: + permalink: /:collection/:path/ + output: true + posts: + permalink: /guide/:title + output: true + implementors: + permalink: /:collection/:path/ + output: true