Merge pull request #105 from taigaio/us/1368/humans.txt
US #1368: Add humans.txt and base robots.txtstable
commit
29af57a257
|
@ -0,0 +1,86 @@
|
|||
/* the humans responsible & colophon */
|
||||
/* humanstxt.org */
|
||||
|
||||
|
||||
/* TEAM */
|
||||
|
||||
Taiga Engineer: Lord Juan Francisco Alcántara
|
||||
Site: http://www.kaleidos.net/40826D/
|
||||
Twitter: nil
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga Engineer & Spartan: Lord Alejandro Alonso
|
||||
Site: http://kaleidos.net/FC8EAC/
|
||||
Twitter: @_superalex_
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga Engineer & Vodka distiller: Lord Andrey Antukh
|
||||
Site: http://kaleidos.net/A5694F/
|
||||
Twitter: @niwibe
|
||||
Location: Madrid, Russia
|
||||
|
||||
Taiga Engineer: Lord David Barragán Merino
|
||||
Site: http://kaleidos.net/FFF8E7/
|
||||
Twitter: @bameda
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga Engineer & Troll Master: Lord Jesús Espino García
|
||||
Site: http://kaleidos.net/007000/
|
||||
Twitter: @jespinog
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga UX Consultant & Mistress of the Dark: Pilar Esteban
|
||||
Site: https://www.linkedin.com/in/pilaresteban
|
||||
Twitter: @devilme
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga Engineer & African Dancer: Anler Hernández
|
||||
Site: http://www.kaleidos.net/2099DB/
|
||||
Twitter: @anler
|
||||
Location: Madrid, Cuba
|
||||
|
||||
Taiga UI Designer, Frontend Engineer & Paella Masterchef: Lord Xavier Julián
|
||||
Site: http://kaleidos.net/CC0000/
|
||||
Twitter: @Xaviju
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga UI Designer: Juan de la Cruz
|
||||
Site: http://kaleidos.net
|
||||
Twitter: @elhombretecla
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga CEO & Community Manager: Ricky Posner
|
||||
Twitter: @eposner
|
||||
Location: Madrid, Spain
|
||||
|
||||
Taiga CEO: Lord Pablo Ruiz Múzquiz
|
||||
Site: http://kaleidos.net/761CEC/
|
||||
Twitter: @diacritica
|
||||
Location: Madrid, Spain
|
||||
|
||||
|
||||
/* SITE */
|
||||
Standards: HTML5, CSS3
|
||||
Components: Django, AngularJS, jQuery
|
||||
Software: PostgreSQL, RabbitMQ, Redis
|
||||
Languajes: Python, CoffeeScript, Jade, Sass
|
||||
|
||||
|
||||
.,,.
|
||||
,;;*;;;;, for ponies with
|
||||
.-'``;-');;. magical powers!
|
||||
/' .-. /*;;
|
||||
.' \d \;; .;;;,
|
||||
/ o ` \; ,__. ,;*;;;*;,
|
||||
\__, _.__,' \_.-') __)--.;;;;;*;;;;,
|
||||
`""`;;;\ /-')_) __) `\' ';;;;;;
|
||||
;*;;; -') `)_) |\ | ;;;;*;
|
||||
;;;;| `---` O | | ;;*;;;
|
||||
*;*;\| O / ;;;;;*
|
||||
;;;;;/| .-------\ / ;*;;;;;
|
||||
;;;*;/ \ | '. (`. ;;;*;;;
|
||||
;;;;;'. ; | ) \ | ;;;;;;
|
||||
,;*;;;;\/ |. / /` | ';;;*;
|
||||
;;;;;;/ |/ / /__/ ';;;
|
||||
'*jgs/ | / | ;*;
|
||||
`""""` `""""` ;'
|
|
@ -0,0 +1,6 @@
|
|||
User-agent: *
|
||||
Disallow:
|
||||
|
||||
# You rush a miracle man, you get rotten miracles.
|
||||
#
|
||||
# -- Miracle Max --
|
|
@ -24,6 +24,7 @@ paths = {}
|
|||
paths.app = "app/"
|
||||
paths.dist = "dist/"
|
||||
paths.tmp = "tmp/"
|
||||
paths.extras = "extras/"
|
||||
|
||||
paths.jade = [
|
||||
paths.app + "index.jade",
|
||||
|
@ -175,7 +176,7 @@ gulp.task "conf", ->
|
|||
gulp.src("conf/main.json")
|
||||
.pipe(wrap("angular.module('taigaBase').value('localconf', <%= contents %>);"))
|
||||
.pipe(concat("conf.js"))
|
||||
.pipe(gulp.dest(paths.tmp));
|
||||
.pipe(gulp.dest(paths.tmp))
|
||||
|
||||
gulp.task "locales", ->
|
||||
gulp.src("app/locales/en/app.json")
|
||||
|
@ -212,7 +213,7 @@ gulp.task "app-watch", ["coffee", "conf", "locales"], ->
|
|||
|
||||
gulp.src(_paths)
|
||||
.pipe(concat("app.js"))
|
||||
.pipe(gulp.dest(paths.dist + "js/"));
|
||||
.pipe(gulp.dest(paths.dist + "js/"))
|
||||
|
||||
gulp.task "app-deploy", ["coffee", "conf", "locales"], ->
|
||||
_paths = [
|
||||
|
@ -224,7 +225,7 @@ gulp.task "app-deploy", ["coffee", "conf", "locales"], ->
|
|||
gulp.src(_paths)
|
||||
.pipe(concat("app.js"))
|
||||
.pipe(uglify({mangle:false, preserveComments: false}))
|
||||
.pipe(gulp.dest(paths.dist + "js/"));
|
||||
.pipe(gulp.dest(paths.dist + "js/"))
|
||||
|
||||
##############################################################################
|
||||
# Common tasks
|
||||
|
@ -251,7 +252,12 @@ gulp.task "copy-plugin-templates", ->
|
|||
gulp.src("#{paths.app}/plugins/**/templates/*")
|
||||
.pipe(gulp.dest("#{paths.dist}/plugins/"))
|
||||
|
||||
gulp.task "copy", ["copy-fonts", "copy-images", "copy-plugin-templates", "copy-svg"]
|
||||
gulp.task "copy-extras", ->
|
||||
gulp.src("#{paths.extras}/*")
|
||||
.pipe(gulp.dest("#{paths.dist}/"))
|
||||
|
||||
|
||||
gulp.task "copy", ["copy-fonts", "copy-images", "copy-plugin-templates", "copy-svg", "copy-extras"]
|
||||
|
||||
gulp.task "express", ->
|
||||
express = require("express")
|
||||
|
|
Loading…
Reference in New Issue