Commit 168d3c80ec7c62c67770f5da5fbd47e924735013
1 parent
37da4819
Exists in
master
and in
8 other branches
Doc: readme
Showing
1 changed file
with
16 additions
and
14 deletions
Show diff stats
README.md
1 | # Dialoga App | 1 | # Dialoga App |
2 | 2 | ||
3 | -Convenções: | 3 | +## Convenções (Dialoga x Noosfero) |
4 | 4 | ||
5 | - Os *programas* são **topics**; | 5 | - Os *programas* são **topics**; |
6 | - Os *temas* são **categories**; | 6 | - Os *temas* são **categories**; |
@@ -8,20 +8,19 @@ Convenções: | @@ -8,20 +8,19 @@ Convenções: | ||
8 | - As *propostas* são **proposals**; | 8 | - As *propostas* são **proposals**; |
9 | 9 | ||
10 | 10 | ||
11 | +## Desenvolvimento | ||
12 | + | ||
11 | Para iniciar o desenvolvimento: | 13 | Para iniciar o desenvolvimento: |
12 | 14 | ||
13 | ```bash | 15 | ```bash |
14 | -# dev with no proxy (local data) | ||
15 | -gulp serve && json-server data.js -p 9000 -w data.js | ||
16 | - | ||
17 | -# dev with proxy to hom server | ||
18 | -gulp serve --target="http://hom.login.dialoga.gov.br" | 16 | +# dev with staging data |
17 | +gulp serve --staging | ||
19 | 18 | ||
20 | -# dev with proxy to production server | ||
21 | -gulp serve --target="http://login.dialoga.gov.br" | 19 | +# dev with production data |
20 | +gulp serve --production | ||
22 | ``` | 21 | ``` |
23 | 22 | ||
24 | -##### Referências | 23 | +##### Tecnologias utilizadas |
25 | 24 | ||
26 | - [generator-gulp-angular](https://github.com/Swiip/generator-gulp-angular) | 25 | - [generator-gulp-angular](https://github.com/Swiip/generator-gulp-angular) |
27 | - Angular | 26 | - Angular |
@@ -30,8 +29,11 @@ gulp serve --target="http://login.dialoga.gov.br" | @@ -30,8 +29,11 @@ gulp serve --target="http://login.dialoga.gov.br" | ||
30 | - angular-touch | 29 | - angular-touch |
31 | - angular-sanitize | 30 | - angular-sanitize |
32 | - angular-ui-router | 31 | - angular-ui-router |
33 | - - restangular | ||
34 | -- gulp (default task: serve) | ||
35 | -- JS old style (no CoffeeScript or ES6 or ...) | ||
36 | -- HTML pure (no JADE or HBS or ...) | ||
37 | -- Bootstrap CSS only (without JS files) | 32 | +- gulp |
33 | +- JS old style (no CoffeeScript or ES6 or etc.) | ||
34 | +- HTML pure (no JADE or HBS or etc.) | ||
35 | +- Bootstrap 3 | ||
36 | + | ||
37 | +## Referências | ||
38 | + | ||
39 | +- Git ([Guia](http://rogerdudler.github.io/git-guide/index.pt_BR.html)) |