Skip to content

Commit

Permalink
Version 1.0.0 baseline
Browse files Browse the repository at this point in the history
Version 1.0.0 baseline
  • Loading branch information
mttwise authored Oct 27, 2023
1 parent cf79115 commit 6da5780
Show file tree
Hide file tree
Showing 1,123 changed files with 198,456 additions and 31 deletions.
12 changes: 12 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[report]
fail_under = 80.0
omit =
**/deployment/*
**/__init__.py
setup.py
**/tests/*
source/infrastructure/app.py
source/backstage/cdk/source/infrastructure/app.py
**/*_dependency_layer/**/*
**/*_dep_layer/**/*
**/*-dep-layer/**/*
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
<!-- A clear and concise description of what the bug is. -->

**To Reproduce**
<!-- Steps to reproduce the behavior. -->

**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->

**Please complete the following information about the solution:**
- [ ] Version: [e.g. v1.0.0]
- [ ] Region: [e.g. us-east-1]
- [ ] Was the solution modified from the version published on this repository?
- [ ] If the answer to the previous question was yes, are the changes available on GitHub?
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses?
- [ ] Were there any errors in the CloudWatch Logs?

**Screenshots**
<!-- If applicable, add screenshots to help explain your problem (please DO NOT include sensitive information). -->

**Additional context**
<!-- Add any other context about the problem here. -->
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this solution
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

**Describe the feature you'd like**
<!-- A clear and concise description of what you want to happen.-->

**Additional context**
<!-- Add any other context or screenshots about the feature request here.-->
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/general_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: General question
about: Ask a general question
title: ''
labels: question
assignees: ''

---

**What is your question?**
<!-- Describe your question as detail as possible. -->
15 changes: 15 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
**Issue #, if available:**
<!-- If there're any related issues, please add the issue number here. -->



**Description of changes:**
<!-- Please describe the changes you made -->


**Checklist**
- [ ] :wave: I have added unit tests for all code changes.
- [ ] :wave: I have run the unit tests, and all unit tests have passed.
- [ ] :warning: This pull request might incur a breaking change.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
217 changes: 217 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,217 @@
# This file should not be ignored if CDK is adjusting these values
# For now, the values in this file are manual and should not be in
# any actual deployment
cdk.context.json
environment_tars
*_dependency_layer

*.js
*postman_collection.json
!**/postman_collection/index.js
!deployment/.typescript/cdk-solution-helper/index.js
!jest.config.js
*.d.ts
node_modules
!source/.typescript/lambda/**/*.js
!source/lambda/**/*.js
coverage/

# Test script runtime configuration
templates/modules/cms_provisioning_on_aws/**/vehicle_config.json

# Certification files
# In case you have these in your directory for deployment/testing
*.pem
*.crt
*.key

# CDK asset staging directory
.cdk.staging
cdk.out
chalice.out

!**/cdk-solution-helper/index.js

staging
global-s3-assets
regional-s3-assets
open-source/
None/
generated_models/

# Temporary folders
tmp/
temp/

### VisualStudioCode ###
.vscode/
.history/

### macOS ###
.DS_Store

coverage-reports/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
#.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env*
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
.idea
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

#draw.io backup files
**/*.xml.bkp
6 changes: 6 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[settings]
src_paths = **/cms-connect-store-on-aws,**/cms-provisioning-on-aws
known_third_party = arrow,attr,attrs,aws_cdk,aws_lambda_powertools,aws_secretsmanager_caching,aws_solutions_constructs,awscrt,awsiot,backoff,boto3,botocore,cattrs,cdk_nag,chalice,constructs,cryptography,dataclass_type_validator,dateutil,freezegun,grafanalib,jinja2,jose,jsii,markdown_to_json,moto,mypy_boto3_dynamodb,mypy_boto3_iot,mypy_boto3_lambda,mypy_boto3_secretsmanager,pytest,requests,responses,setuptools,syrupy,toml
import_heading_stdlib=Standard Library
import_heading_thirdparty=Third Party Libraries
import_heading_localfolder=Connected Mobility Solution on AWS
53 changes: 53 additions & 0 deletions .license-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
allowedLicenses:
- (Apache-2.0 OR MPL-1.1)
- (BSD-3-Clause OR GPL-2.0)
- (MIT AND BSD-3-Clause)
- (MIT AND Zlib)
- (MIT OR Apache-2.0)
- (MIT OR CC0-1.0)
- (WTFPL OR MIT)
- 0BSD
- 3-Clause BSD License
- Apache 1.1
- Apache 2.0
- Apache License 2.0
- Apache Software License
- Apache Software License; BSD License
- Apache*
- Apache-2.0
- BSD
- BSD License
- BSD License, Apache Software License
- BSD*
- BSD-2-Clause
- BSD-3-Clause
- CC-BY-3.0
- CC-BY-4.0
- CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
- CC0-1.0
- 'Custom: https://github.com/tmcw/jsonlint'
- EPL-1.0
- FreeBSD
- Freely Distributable
- Freely Distributable; MIT License
- GNU General Public License v2 (GPLv2)
- GNU Lesser General Public License v2 (LGPLv2)
- ISC
- ISC License (ISCL)
- MIT
- MIT License
- MIT License, Mozilla Public License 2.0 (MPL 2.0)
- MIT License; MIT No Attribution License (MIT-0)
- MIT License; Other/Proprietary License
- MIT*
- MPL-2.0
- Mozilla Public License 2.0 (MPL 2.0)
- Other/Proprietary License
- Python Software Foundation License
- Python Software Foundation License, MIT License
- The Unlicense (Unlicense)
- WT*PL
- WTFPL
- WTFPL-2.0
excludedPackages: []
include: []
5 changes: 5 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"MD013": {
"line_length": 120
}
}
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.17.1
Loading

0 comments on commit 6da5780

Please sign in to comment.