Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shakyshane/yes.gg
https://github.com/shakyshane/yes.gg
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shakyshane/yes.gg
- Owner: shakyShane
- Created: 2016-06-21T20:08:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T16:37:34.000Z (about 2 years ago)
- Last Synced: 2024-04-14T07:49:51.519Z (9 months ago)
- Language: Handlebars
- Size: 48.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Commands
Create thumbs
```shell
mogrify -format jpg -path thumbs -thumbnail 150x150 *.jpg
```rename files
```shell
rename -X -e '$_ = "$N-large"' *
```## Crossbow tasks
The following tasks have been defined by this project's Crossbow configuration.
Run any of them in the following way
```shell
$ crossbow run
```
|Task name|Description|
|---|---|
|`build-all`|Wipe compiled files & re-create HTML/JS/CSS|
|`build-css`|Build production ready CSS files|
|`build-js`|**Alias for:**
- `webpack`|
|`deploy-light`|Only build HTML and deploy static assets|
|`deploy`|Build-all assets & rsync to server|
|`webpack`|**Alias for:**
- `@npm webpack --config webpack-prod.config.js`|
|`build-html`|**Alias for:**
- `crossbow`|
|`docker`|Run docker-compose with **dev** config files|
|`rsync`|Copy files from local to remote server|
|`docker-remote`|**Alias for:**
- `@sh ssh $AUTH "cd $DOCKER_NAME && docker-compose restart"`|
|`open`|**Alias for:**
- `@sh open http://$DO_IP`|
|`reload-nginx`|**Alias for:**
- `@sh docker exec $DOCKER_NAME nginx -s reload`|
|`clean`|Wipe built assets (html/js/css)|