Stewart Henderson
|
b444784472
|
Update Serverless version
|
2019-11-19 10:44:55 -06:00 |
Stewart Henderson
|
cadd7d9ff5
|
Deprecated Serverless offline and dynamodb-local
|
2019-11-14 12:26:06 -06:00 |
Stewart Henderson
|
6c1f5f82f4
|
Updated serverless dependencies
|
2019-11-11 11:12:47 -05:00 |
Stewart Henderson
|
23a54e1b98
|
Initial dynalite removal
|
2019-10-30 16:28:46 -05:00 |
Stewart Henderson
|
688d2d18f5
|
Stack protection of the production environment
|
2019-10-18 12:12:02 -05:00 |
Stewart Henderson
|
6ab0d281d6
|
document and handle fsevents
|
2019-10-07 09:12:52 -07:00 |
Stewart Henderson
|
f77232adcb
|
Initial blue-green deployments.
|
2019-10-02 14:28:11 -05:00 |
Stewart Henderson
|
a16b84c4b4
|
Update serverless and dependencies
|
2019-09-27 05:12:55 -07:00 |
Stewart Henderson
|
d52e6c10f4
|
refactor sub and hub to be separate code and aws functions
|
2019-09-11 17:53:03 -07:00 |
Stewart Henderson
|
8104adb36d
|
Updated package.json requirements to strict versions
|
2019-08-09 10:46:07 -07:00 |
Scott Idler
|
b4cfb4cd5a
|
updated packages to latest versions
|
2019-06-05 16:49:40 -05:00 |
Scott Idler
|
73c8dea4c1
|
added the dynamodb-local pkg back as it seems to be required for deploys
|
2019-05-21 18:31:17 -05:00 |
Scott Idler
|
70fd0daee5
|
add task to run locally
|
2019-05-17 15:53:20 -05:00 |
Scott Idler
|
5185fbdc9e
|
iadd serverless-domain-manager
|
2019-04-26 14:47:51 -07:00 |
Marty Ballard
|
575d44453c
|
Merge branch 'master' into feat/dynamodb
|
2019-04-26 15:32:44 -05:00 |
Scott Idler
|
f66d23a0a5
|
ran npm audit fix --force
|
2019-04-23 14:58:26 -07:00 |
Marty Ballard
|
49689fbc6c
|
beginning dynamodb setup
|
2019-04-19 10:48:52 -05:00 |
Marty Ballard
|
a0d22e1881
|
Reformated serverless.yaml
- add dynamodb table
- remove Subhub role
- added AWS secrets
|
2019-04-18 15:41:38 -05:00 |
Scott Idler
|
f2f7c0e63c
|
The following is a annotated tree listing:
.
├ conftest.py #for pytest
├ dodo.py #for automating things (think Make in python)
├ LICENSE
├ package.json #for installing serverless cli
├ README.md
├ services #multiple services (lambda) can be listed here
│ └ subhub #currently we only have one, until we need another
│ ├ handler.py #thin shim that just calls subhub.app
│ ├ serverless.yml #serverless config file, db, src, roles, etc
│ └ subhub -> ../../subhub #symlink pointing at subhub src
├ setup.cfg #config file for setup.py
├ setup.py #packaging file, works with tox
├ subhub #src path
│ ├ app.py
│ ├ auth_validation.py
│ ├ cfg.py
│ ├ Dockerfile
│ ├ __init__.py
│ ├ log.py
│ ├ README.md
│ ├ requirements.txt #list of deps for subhub
│ ├ stripe_calls.py
│ ├ subhub_api.yaml
│ └ tests #test folder
│ ├ functional
│ │ └ __init__.py
│ ├ __init__.py
│ ├ pylint.rc #configuration file for pylint
│ ├ pytest.ini #configuration file for pytest
│ ├ requirements.txt #requirements for tests
│ ├ test_subhub.py
│ └ unit
│ ├ __init__.py
│ └ test_stripe_calls.py
└ tox.ini #configuration file for tox
|
2019-04-15 23:37:18 -07:00 |