ferrisup 0.2.5

A versatile Rust project bootstrapping tool - start anywhere, scale anywhere
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: build clean deploy

build:
	cargo lambda build --release

clean:
	cargo clean
	rm -rf target

deploy: build
	sam deploy --template-file template.yml --stack-name {{project_name}}-stack --capabilities CAPABILITY_IAM --no-confirm-changeset

local:
	cargo lambda watch