{"id":15906348,"url":"https://github.com/softchris/vamos-nitro","last_synced_at":"2026-01-29T03:41:58.954Z","repository":{"id":48917002,"uuid":"209029964","full_name":"softchris/vamos-nitro","owner":"softchris","description":"static page","archived":false,"fork":false,"pushed_at":"2021-07-05T19:41:08.000Z","size":2,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-03T15:22:39.609Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/softchris.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}},"created_at":"2019-09-17T10:56:47.000Z","updated_at":"2019-09-17T11:00:53.000Z","dependencies_parsed_at":"2022-09-24T00:01:58.527Z","dependency_job_id":null,"html_url":"https://github.com/softchris/vamos-nitro","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/softchris/vamos-nitro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softchris%2Fvamos-nitro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softchris%2Fvamos-nitro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softchris%2Fvamos-nitro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softchris%2Fvamos-nitro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/softchris","download_url":"https://codeload.github.com/softchris/vamos-nitro/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softchris%2Fvamos-nitro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28862127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"online","status_checked_at":"2026-01-29T02:00:06.714Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-10-06T13:22:43.966Z","updated_at":"2026-01-29T03:41:58.939Z","avatar_url":"https://github.com/softchris.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# NestJS\n\nWhat are the steps?\n\nScaffold a NestJS app\n\nGenerate something that adds a module to the NestJS app\n\n- Install Nest.js CLI\n- Generate an app\n- Add Azure module\n\n\n\n## Install CLI\n\nTo install the Nest.js CLI type\n\n```\nnpm i -g @nestjs/cli\n```\n\n## Generate an app\n\nTo generate an app we just type\n\n```\nnest new hello-world\ncd hello-world\n```\n\n\n\nTurns Nest.js app into Azure Function app\n\n```\nnest add @nestjs/azure-func-http\n```\n\nThis should give you an output like the following:\n\n```\n✔ Installation in progress... ☕\nCREATE /.funcignore (66 bytes)\nCREATE /host.json (23 bytes)\nCREATE /local.settings.json (116 bytes)\nCREATE /proxies.json (72 bytes)\nCREATE /main/function.json (294 bytes)\nCREATE /main/index.ts (287 bytes)\nCREATE /main/sample.dat (23 bytes)\nCREATE /src/main.azure.ts (321 bytes)\nUPDATE /package.json (1827 bytes)\n```\n\nYour project has now turned into a Azure functions app\n\n\n\nEnsure you have the following installed:\n\n- Azure Core Tools, \u003chttps://github.com/Azure/azure-functions-core-tools#installing\u003e\n- Azure Functions extension for VS Code, \u003cvscode:extension/ms-azuretools.vscode-azurefunctions\u003e\n\nNow in VS Code locate the Azure tool icon to the left, and sign in to Azure\n\n![](https://code.visualstudio.com/assets/tutorials/functions-extension/sign-in.png)\n\n Next click the blue arrow icon to deploy\n\n![](https://code.visualstudio.com/assets/tutorials/functions-extension/function-app-publish-project.png)\n\nFrom here follow the prompts. Choose the directory that you currently have open, select your Azure subscription, and then choose **Create New Function App**.\n\n1. Type a globally unique name for your Function App and press Enter. Valid characters for a function app name are 'a-z', '0-9', and '-'.\n2. Choose **Create New Resource Group**, type a Resource Group name, like 'myResourceGroup' and press Enter.\n3. Choose a location in a [region](https://azure.microsoft.com/en-us/regions/) near you or near other services you may need to access.\n4. Choose **Create New Storage Account**, type a globally unique name of the new storage account used by your function app and press Enter. Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only.\n\n\n\nIt should look something like this when it's done deploying\n\n![](https://code.visualstudio.com/assets/tutorials/functions-extension/function-create-output.png)\n\n# Deploy an Angular app\n\nScaffold an app\n\n```\nng new MyApp\ncd Myapp\n```\n\n`MyApp` can be whatever name you choose\n\nUpgrade to Angular 8+ if needed\n\n```\nng update @angular/cli @angular/core\n```\n\n\n\n## Ng-deploy\n\nThere are two steps here\n\n1. **Generate** config file\n2. **Deploy** to Azure\n\n\n\n### Generate config file\n\nPre step, run the following command\n\n```\nng add @azure/ng-deploy\n```\n\nThis will install `@azure/ng-deploy` from NPM\n\n1. it will prompt you to log in (unless you are already logged in to Azure via the terminal)\n2. t will bring up a dialog where you are asked to *select* a subscription (if you have more than one).\n\nThen it will create the needed resources at Azure and ends with creating an `azure.json` file that contains all the needed config\n\n\n\n### Deploy to Azure\n\nJust type the following command:\n\n```\nng deploy\n```\n\nThis will do the following:\n\n1. **Compile** the Angular project if `dist` folder is empty\n2. **Upload** files to Azure using the config found in `azure.json`\n\nThe step will finish with the *public URL* being displayed\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftchris%2Fvamos-nitro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoftchris%2Fvamos-nitro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftchris%2Fvamos-nitro/lists"}