An open API service indexing awesome lists of open source software.

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.

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
```