{"id":20144276,"url":"https://github.com/made2591/fullstackconf19","last_synced_at":"2026-05-10T19:00:46.343Z","repository":{"id":46063413,"uuid":"213181756","full_name":"made2591/fullstackconf19","owner":"made2591","description":"The code required to run the Visual Code Studio solution on Amazon Web Services.","archived":false,"fork":false,"pushed_at":"2021-11-16T22:00:29.000Z","size":18468,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-02T23:44:18.856Z","etag":null,"topics":["aws","code","fullstack","sam","serverless","vcs","visualstudiocode"],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/made2591.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-10-06T14:19:37.000Z","updated_at":"2019-10-06T14:38:26.000Z","dependencies_parsed_at":"2022-07-21T22:48:27.978Z","dependency_job_id":null,"html_url":"https://github.com/made2591/fullstackconf19","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/made2591/fullstackconf19","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Ffullstackconf19","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Ffullstackconf19/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Ffullstackconf19/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Ffullstackconf19/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/made2591","download_url":"https://codeload.github.com/made2591/fullstackconf19/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Ffullstackconf19/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27282333,"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","status":"online","status_checked_at":"2025-11-26T02:00:06.075Z","response_time":193,"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":["aws","code","fullstack","sam","serverless","vcs","visualstudiocode"],"created_at":"2024-11-13T22:09:29.944Z","updated_at":"2025-11-27T18:03:00.973Z","avatar_url":"https://github.com/made2591.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FullStackConf - Torino 2019\n\nThis is out full stack solution to code from everywhere using Visual Code Studio. Many thanks to [github.com/cdr/code-server](https://github.com/cdr/code-server).\n\n- [https://github.com/made2591/fullstackconf19/blob/master/speech/speech.pdf](https://github.com/made2591/fullstackconf19/blob/master/slides/speech.pdf) you can find a brief explanation of repo content.\n- [https://madeddu.xyz/posts/aws/cloudformation/traefik-single-to-multi-tenant/](https://madeddu.xyz/posts/aws/cloudformation/traefik-single-to-multi-tenant/) you can find a blog post about original template.\n- [https://madeddu.xyz/posts/aws/cloudformation/immutable-vsc/](https://madeddu.xyz/posts/aws/cloudformation/immutable-vsc/) you can find a blog post about multitenancy template.\n\n## Architecture schemas\n\n![](https://github.com/made2591/fullstackconf19/blob/master/slides/img/architecture.png)\n\n## Requirements\n\n* SAM CLI\n* [Python 3 installed](https://www.python.org/downloads/)\n* [Docker installed](https://www.docker.com/community-edition)\n\n### Setup and deploy process\n\nFirstly, we need a `S3 bucket` where we can upload our Lambda functions packaged as ZIP before we deploy anything - If you don't have a S3 bucket to store code artifacts then this is a good time to create one:\n\n```bash\naws s3 mb s3://BUCKET_NAME\n```\n\nNext, run the following command to package our Lambda function to S3:\n\n```bash\nsam package \\\n    --output-template-file packaged.yaml \\\n    --s3-bucket REPLACE_THIS_WITH_YOUR_S3_BUCKET_NAME\n```\n\nNext, the following command will create a Cloudformation Stack and deploy your SAM resources.\n\n```bash\nsam deploy \\\n    --template-file packaged.yaml \\\n    --stack-name sam-app \\\n    --capabilities CAPABILITY_IAM\n```\n\n\u003e **See [Serverless Application Model (SAM) HOWTO Guide](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-quick-start.html) for more details in how to get started.**\n\nAfter deployment is complete you can run the following command to retrieve the API Gateway Endpoint URL:\n\n```bash\naws cloudformation describe-stacks \\\n    --stack-name sam-app \\\n    --query 'Stacks[].Outputs[?OutputKey==`HelloWorldApi`]' \\\n    --output table\n```\n\n### Authors\n\n* **Matteo Madeddu** - [Blog](https://madeddu.xyz/), [Github](https://github.com/made2591/), [LinkedIn](https://www.linkedin.com/in/mmadeddu/)\n* **Guido Nebiolo** - [Github](https://github.com/guidonebiolo/), [LinkedIn](https://www.linkedin.com/in/guidonebiolo/)\n\nThank you for your interest!\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n\n## Acknowledgments\n\n* Fix architecture schemas\n* Inspiration\n* etc","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmade2591%2Ffullstackconf19","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmade2591%2Ffullstackconf19","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmade2591%2Ffullstackconf19/lists"}