{"id":18936394,"url":"https://github.com/vaporexampleslab/quicwebbupdater","last_synced_at":"2025-10-12T15:15:19.030Z","repository":{"id":133115016,"uuid":"186326195","full_name":"VaporExamplesLab/QuicWebbUpdater","owner":"VaporExamplesLab","description":null,"archived":false,"fork":false,"pushed_at":"2019-05-13T07:11:05.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-31T21:26:13.566Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VaporExamplesLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2019-05-13T01:38:50.000Z","updated_at":"2019-05-13T07:11:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"e0033821-82fc-4e0f-b4d1-45b8b14ae240","html_url":"https://github.com/VaporExamplesLab/QuicWebbUpdater","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VaporExamplesLab%2FQuicWebbUpdater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VaporExamplesLab%2FQuicWebbUpdater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VaporExamplesLab%2FQuicWebbUpdater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VaporExamplesLab%2FQuicWebbUpdater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VaporExamplesLab","download_url":"https://codeload.github.com/VaporExamplesLab/QuicWebbUpdater/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239937702,"owners_count":19721482,"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":[],"created_at":"2024-11-08T12:07:16.277Z","updated_at":"2025-10-12T15:15:18.965Z","avatar_url":"https://github.com/VaporExamplesLab.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [QuicWebbUpdater][t]\n[t]:https://github.com/VaporExamplesLab/QuicWebbUpdater\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"http://docs.vapor.codes/3.0/\"\u003e\n        \u003cimg src=\"http://img.shields.io/badge/read_the-docs-2196f3.svg\" alt=\"Documentation\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"LICENSE\"\u003e\n        \u003cimg src=\"http://img.shields.io/badge/license-MIT-brightgreen.svg\" alt=\"MIT License\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://swift.org\"\u003e\n        \u003cimg src=\"http://img.shields.io/badge/swift-4.2-brightgreen.svg\" alt=\"Swift 4.2\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ca id=\"toc\"\u003e\u003c/a\u003e\n[Getting Started](#GettingStarted) •\n[Original Setup](#OriginalSetup) •\n[Resources](#Resources) \n\n## Getting Started \u003ca id=\"GettingStarted\"\u003e\u003c/a\u003e[▴](#toc)\n\n**Prerequisites**\n\n* [Install Xcode 10 ⇗](https://itunes.apple.com/us/app/xcode/id497799835?mt=12)\n* [Install homebrew ⇗](https://brew.sh/)\n* [Install vapor toolbox ⇗](https://docs.vapor.codes/3.0/install/macos/)\n\n**Download|Clone \u0026 Run**\n\nSteps to download repository:\n\n``` bash\n## go to your working directory\ncd \u003cyour-choosen-directory-path\u003e\n\n## download and unzip\nwget https://github.com/VaporExamplesLab/QuicWebbUpdater/archive/master.zip\nunzip master.zip -d QuicWebbUpdater\nrm master.zip     # remove download\n\ncd QuicWebbUpdater-master\n\n# update dependencies \n# with `-y` yes to generate and open Xcode project\nvapor update -y\n```\n\nOr, alternate steps to clone repository instead of download:\n\n``` bash\n## go to your working directory\ncd \u003cyour-choosen-directory-path\u003e\n\n## either clone\n##    add --bare option for an unattached instance\ngit clone git@github.com:VaporExamplesLab/QuicWebbUpdater.git \n\ncd QuicWebbUpdater\n\n# update dependencies \n# with `-y` yes to generate and open Xcode project\nvapor update -y\n```\n\nSet Xcode scheme Run Arguments.\n\n```\n--original-dir='path_original_blog_content'\n--processed-dir='path_process_blog_content'\n--verbose\n```\n\n![Xcode Run Arguments](README_files/XcodeArguments.png)\n\nClick the run button and check the results in a browser at `http://localhost:8080`.\n\n![TBD:LandingPage](README_files/LandingPage.png)\n\n## Original Setup \u003ca id=\"OriginalSetup\"\u003e\u003c/a\u003e[▴](#toc)\n\nThe following steps were completed to create the `QuicWebbUpdater` example. \n\n\n``` bash\nmkdir QuicWebbUpdater\ncd QuicWebbUpdater\nswift package init --type executable\nswift package generate-xcodeproj\nopen QuicWebbUpdater.xcodeproj/\n```\n\nSetting \"upload\" creation dates \n\n``` bash\ncd \u003cPATH\u003e/blog_content_original/markdown\n## -t changes access and modified times.\ntouch -t 201811220800 2018/11/FirstPost.md \n\ntouch 2018/11/FirstPost_files/*\ntouch 2018/11/FirstPost_files/figure1.png\ntouch 2018/11/FirstPost_files/figure2.jpg\ntouch 2018/11/FirstPost_files/figure2.png\ntouch 2018/11/FirstPost_files/figure3.pdf\ntouch 2018/11/FirstPost_files/figure3.png\ntouch 2018/11/FirstPost_files/figure4.gif\ntouch 2018/11/FirstPost_files/figure4.png\n\n\ntouch 2018/11/FirstPost_files/more/*\ntouch 2018/11/FirstPost_files/more/folder-2103508.svg\n\n```\n\n\n## Resources \u003ca id=\"Resources\"\u003e\u003c/a\u003e[▴](#toc)\n\n* [Bootstrap ⇗](https://getbootstrap.com)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaporexampleslab%2Fquicwebbupdater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvaporexampleslab%2Fquicwebbupdater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaporexampleslab%2Fquicwebbupdater/lists"}