https://github.com/aplbrain/colocart
Easy static-site build and deployment to AWS s3.
https://github.com/aplbrain/colocart
Last synced: 8 months ago
JSON representation
Easy static-site build and deployment to AWS s3.
- Host: GitHub
- URL: https://github.com/aplbrain/colocart
- Owner: aplbrain
- License: apache-2.0
- Created: 2019-09-26T18:52:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-16T14:08:27.000Z (over 6 years ago)
- Last Synced: 2025-03-15T09:22:45.521Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
🛒
c o l o c a r t
A simple build system for static-site deploys.
## Installation
```shell
git clone https://github.com/aplbrain/colocart.git
cd colocart
pip3 install -U .
```
## Usage
```shell
colocart build .
colocart deploy .
```
You may want to specify an AWS profile-name:
```shell
AWS_PROFILE=aplbrain colocart deploy .
```
## Example
For a yarn-built npm project:
`colocart.cfg`:
```
[BUILD]
BuildCommand = "yarn run build"
BuildDirectory = dist
[UPLOAD]
BucketName = my-s3-bucket
```