It's essentially a fancier "Hello World" app. This demo app is current WIP and not to be considered a reference architecture yet. The Cloud Pathfinder team intends to provide a proper CI/CD pattern and clean up rough edges. For now it has been used internally for testing purposes. Stay tuned we intend to have this improved soon.
Welcome to your new project. This is a basic starter project with a NodeJS app connected to a database for you to modify and expand to fit your needs. It provides scripts for developing and running locally, as well as "Infrastructure-as-Code" using Terraform/Terragrunt to allow the app to be easily deployed to public cloud environments. Currently, AWS is supported, but support for other cloud targets may be added in the future.
In order to develop or run the app locally, you will need:
bash
-like terminal environment; testing has primarily been done using MacOS Catalina, Ubuntu Linux, and Windows 10 (WSL2)make
Docker
# MacOS and Ubuntu 20.04, Windows 10 (WSL2 - Ubuntu 20.04), if make is installed
make local-setup
# MacOS, if make is not installed
./.config/local/darwin.sh
# Ubuntu 20.04, Windows 10 (WSL2 - Ubuntu 20.04), if make is not installed
./.config/local/linux.sh
# setup development environment
make setup-development-env
make local
# initialize vscode project config
make vscode-copy-config
# open the project in vscode
make vscode
GitHub Action workflows in .github/workflows
are used to build, test, and deploy the application. The diagram below illustrates the workflow architecture.
Terraform and Terragrunt are used to deploy the application to AWS.
The infrastructure for the app is defined in the terraform module linked below and instantiated using Terragrunt (config is in the terraform/
folder).
startup-sample-project-terraform-modules
Once your application infrastructure as been provisioned you can get a public url for your application by submitting a request in the #aws-lz2
channel on Rocket.Chat (chat.pathfinder.gov.bc.ca).
Please submit your request with the following information:
Copyright 2020 Province of British Columbia
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
<http://www.apache.org/licenses/LICENSE-2.0>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.