Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = (grunt) ->
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-contrib-connect'
grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-uglify'

# project configuration
grunt.initConfig
Expand Down Expand Up @@ -33,6 +34,10 @@ module.exports = (grunt) ->
server:
options:
port: 8000

grunt.registerTask('default', ['connect', 'watch'])
uglify:
my_target:
files: 'scripts/player.min.js':'scripts/player.js'

grunt.registerTask('server', ['connect', 'watch'])
grunt.registerTask('deploy', ['uglify', 'sass', 'coffee','production'])

27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,30 @@
# .wiredIn()

Somos loucos por música. Somos loucos por desenvolvimento. O __.wiredIn()__ é
![Logo WiredIn](images/readme_header.jpg)

Somos loucos por música. Somos loucos por desenvolvimento. O [__.wiredIn()__](http://wiredin.loopinfinito.com.br) é
uma coletânea periódica de músicas pra te ajudar a se manter focado e mais
produtivo. Aperte o play e deixe seus commits fluírem.

## Como contribuir

O projeto é todo feito apenas com puro HTML, CSS e JS.
Basta por o projeto em seu `htdocs` ou, então, digite em seu terminal:
1- Faça o clone do projeto para o seu computador.

2- O projeto é todo feito apenas com puro HTML, CSS e JS.
Como utilizamos o [Grunt.JS](http://www.gruntjs.com), basta digitar:

`grunt server`

Ele ira gerar um servidor em `localhost:8000`.
Como utilizamos também [Sass](http://www.sass-lang.com), ele fica observando e compila automaticamente qualquer alteração.

3- Antes de submeter suas modificações, digite o comando:

`grunt deploy`

```bash
$ cd wired-in
$ python -m SimpleHTTPServer
```
Assim o projeto estará pronto.

E aponte o seu navegador para `localhost:8000`. Simples assim.
Faça suas alterações e nos envie um _pull request_.
4- Agora é só nós enviar um _pull request_.

## Licença

Expand Down
22 changes: 22 additions & 0 deletions node_modules/grunt-contrib-uglify/LICENSE-MIT

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading