40 lines
898 B
Markdown
40 lines
898 B
Markdown
# kretschmann.cat
|
|
|
|
> Highlighting Botero's cat sculpture in El Raval, Barcelona
|
|
|
|
<img src="site/assets/gato-del-raval.jpg" width="400" alt="gato del raval">
|
|
|
|
[![build status](https://www.git.berlin/kremalicious/kretschmann.cat/badges/master/build.svg)](https://www.git.berlin/kremalicious/kretschmann.cat/commits/master)
|
|
|
|
---
|
|
|
|
[https://kretschmann.cat](https://kretschmann.cat)
|
|
|
|
## Deployment
|
|
|
|
Just push to master and git.berlin CI will do the rest.
|
|
|
|
### Manual deployment
|
|
|
|
#### Prerequisite: Authentication
|
|
|
|
To deploy the site, you must authenticate yourself against the AWS API with your AWS credentials. Get your AWS access key and secret and add them to `~/.aws/credentials`:
|
|
|
|
```
|
|
[default]
|
|
aws_access_key_id = <YOUR_ACCESS_KEY_ID>
|
|
aws_secret_access_key = <YOUR_SECRET_ACCESS_KEY>
|
|
```
|
|
|
|
Continue with installing dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
``
|
|
|
|
And finally deploy:
|
|
|
|
```bash
|
|
gulp deploy
|
|
``
|