{"id":20786026,"url":"https://github.com/thomassuedbroecker/vue-simple-webapp","last_synced_at":"2026-04-11T13:34:10.451Z","repository":{"id":127030660,"uuid":"564368069","full_name":"thomassuedbroecker/vue-simple-webapp","owner":"thomassuedbroecker","description":"Just a simple Vue.js webapp which is prepared to integrate IBM Cloud Watson Assistant and run on IBM Cloud Code Engine.","archived":false,"fork":false,"pushed_at":"2023-07-20T13:09:44.000Z","size":4273,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T02:30:41.371Z","etag":null,"topics":["container","javascript","nginx","nodejs","vuejs","watson-assistant"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/thomassuedbroecker.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":"2022-11-10T15:10:16.000Z","updated_at":"2023-02-28T09:05:30.000Z","dependencies_parsed_at":"2025-01-18T10:02:57.637Z","dependency_job_id":null,"html_url":"https://github.com/thomassuedbroecker/vue-simple-webapp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thomassuedbroecker/vue-simple-webapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomassuedbroecker%2Fvue-simple-webapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomassuedbroecker%2Fvue-simple-webapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomassuedbroecker%2Fvue-simple-webapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomassuedbroecker%2Fvue-simple-webapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomassuedbroecker","download_url":"https://codeload.github.com/thomassuedbroecker/vue-simple-webapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomassuedbroecker%2Fvue-simple-webapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31682953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["container","javascript","nginx","nodejs","vuejs","watson-assistant"],"created_at":"2024-11-17T14:50:19.097Z","updated_at":"2026-04-11T13:34:10.425Z","avatar_url":"https://github.com/thomassuedbroecker.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example WebApp build on Vue.js\n\nThis repository contains a sample [Vue.js](https://vuejs.org) application called `\"Example Banking\"`.\n\n![](images/simple-webapp-01.png)\n\nThe example application can run locally as native Vue.js application and in a container ([Podman](https://podman.io/)), where an [Nginx](https://www.nginx.com) is used as the webserver for the [Vue.js](https://vuejs.org) webapplication. You can also deploy the application to [`IBM Cloud Code Engine`](https://cloud.ibm.com/docs/codeengine).\n\nThe example application is also prepared to be integrated with [`IBM Cloud Watson Assistant`](https://cloud.ibm.com/catalog/services/watson-assistant#about). \n\nYou can also create your own TLS certificate with [cert bot](https://certbot.eff.org/) and [Let's Encrypt](https://letsencrypt.org/). You can use [`IBM Cloud Code Engine` domain mapping](https://cloud.ibm.com/docs/codeengine?topic=codeengine-domain-mappings) to map your custom domain.\n\n\u003e Visit the related blog post [`Custom domain and TLS certificate for your application on IBM Cloud Code Engine`](https://suedbroecker.net/2022/12/26/custom-domain-and-tls-certificate-for-your-application-on-ibm-cloud-code-engine/).\n\n### Step 1: Clone the example project to your local computer\n\n```sh\ngit clone https://github.com/thomassuedbroecker/vue-simple-webapp\ncd vue-simple-webapp/code\n```\n\n### Step 2:  Set the needed environ `.env` file\n\n```sh\ncat .env-template \u003e .env\n```\n\nEdit the `.env` file.\n\n```sh\nASSISTANT_INTEGRATION_ID=\"YOUR_ID\" \nASSISTANT_REGION=\"YOUR_REGION\"\nASSISTANT_SERVICE_INSTANCE_ID=\"YOUR_SERVICE_INSTANCE\"\nROOTFOLDER=\"YOUR_ROOTFOLDER\" #Location on your local machine\nMYPROJECT=\"YOUR_MYPROJECT\" #Code Engine project name\nRESOURCE_GROUP=\"default\" #IBM Cloud resource group\nREGION=\"YOUR_REGION\" #IBM Cloud region\nCERT_EMAIL=\"YOUR_EMAIL\" # If you want to create a TLS certification\nCERT_DOMAIN=\"YOUR_DOMAIN\" # If you want to create a TLS certification\n```\n\n### Step 3: Run the application locally\n\n```sh\n  npm install\n  npm run lint\n  npm run dev\n```\n\n### Step 4: Run the application locally as a container\n\n```sh\nsh build-and-verify-container.sh\n```\n\n### Step 5: Push the container to a container registry\n\n```sh\nsh build-push-container.sh\n```\n\n### Step 6: Deploy the application to Code Engine\n\n```sh\nibmcloud login\nsh deploy-application.sh\n```\n\n### Step 7: Create a TLS cert for a domain\n\n```sh\ncreate-cert.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomassuedbroecker%2Fvue-simple-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomassuedbroecker%2Fvue-simple-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomassuedbroecker%2Fvue-simple-webapp/lists"}