-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9ba5c5a
Showing
75 changed files
with
7,681 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
build/ | ||
pkg/ | ||
dist/ | ||
src/ | ||
bin/ | ||
*.pyc | ||
*.egg-info/ | ||
|
||
.tmp | ||
.vagrant | ||
|
||
bower_components/ | ||
node_modules/ | ||
|
||
transfersh-server/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"regexp": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"jquery": true, | ||
"white": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: go | ||
go: | ||
- 1.1 | ||
- 1.2 | ||
- 1.3 | ||
- release | ||
- tip | ||
|
||
script: | ||
- go test -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,287 @@ | ||
'use strict'; | ||
|
||
// # Globbing | ||
// for performance reasons we're only matching one level down: | ||
// 'test/spec/{,*/}*.js' | ||
// use this if you want to match all subfolders: | ||
// 'test/spec/**/*.js' | ||
|
||
module.exports = function (grunt) { | ||
// load all grunt tasks | ||
require('load-grunt-tasks')(grunt); | ||
// show elapsed time at the end | ||
require('time-grunt')(grunt); | ||
|
||
// configurable paths | ||
var yeomanConfig = { | ||
app: require('./bower.json').appPath || 'transfersh-web', | ||
dist: 'transfersh-server/static/' | ||
}; | ||
|
||
grunt.initConfig({ | ||
yeoman: yeomanConfig, | ||
watch: { | ||
less: { | ||
files: ['<%= yeoman.app %>/styles/{,*/}*.less'], | ||
tasks: ['less'] | ||
}, | ||
gruntfile: { | ||
files: ['Gruntfile.js'] | ||
}, | ||
livereload: { | ||
options: { | ||
livereload: '<%= connect.options.livereload %>' | ||
}, | ||
files: [ | ||
'<%= yeoman.app %>/*.html', | ||
'{.tmp,<%= yeoman.app %>}/styles/{,*/}*.css', | ||
'{.tmp,<%= yeoman.app %>}/scripts/{,*/}*.js', | ||
'<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}' | ||
] | ||
} | ||
}, | ||
connect: { | ||
options: { | ||
port: 9000, | ||
// change this to '0.0.0.0' to access the server from outside | ||
hostname: 'localhost', | ||
livereload: 35729 | ||
}, | ||
livereload: { | ||
options: { | ||
open: true, | ||
base: [ | ||
'.tmp', | ||
'<%= yeoman.app %>' | ||
] | ||
} | ||
}, | ||
test: { | ||
options: { | ||
port: 9001, | ||
base: [ | ||
'.tmp', | ||
'test', | ||
'<%= yeoman.app %>' | ||
] | ||
} | ||
}, | ||
dist: { | ||
options: { | ||
base: '<%= yeoman.dist %>' | ||
} | ||
} | ||
}, | ||
clean: { | ||
dist: { | ||
files: [{ | ||
dot: true, | ||
src: [ | ||
'.tmp', | ||
'<%= yeoman.dist %>/*', | ||
'!<%= yeoman.dist %>/.git*' | ||
] | ||
}] | ||
}, | ||
server: '.tmp' | ||
}, | ||
jshint: { | ||
options: { | ||
jshintrc: '.jshintrc', | ||
reporter: require('jshint-stylish') | ||
}, | ||
all: [ | ||
'Gruntfile.js', | ||
'<%= yeoman.app %>/scripts/{,*/}*.js', | ||
'!<%= yeoman.app %>/scripts/vendor/*', | ||
'test/spec/{,*/}*.js' | ||
] | ||
}, | ||
|
||
|
||
less: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.app %>/styles/main.css': ['<%= yeoman.app %>/styles/main.less'] | ||
}, | ||
options: { | ||
sourceMap: true, | ||
sourceMapFilename: '<%= yeoman.app %>/styles/main.css.map', | ||
sourceMapBasepath: '<%= yeoman.app %>/', | ||
sourceMapRootpath: '/' | ||
} | ||
} | ||
}, | ||
// not used since Uglify task does concat, | ||
// but still available if needed | ||
/*concat: { | ||
dist: {} | ||
},*/ | ||
// not enabled since usemin task does concat and uglify | ||
// check index.html to edit your build targets | ||
// enable this task if you prefer defining your build targets here | ||
/*uglify: { | ||
dist: {} | ||
},*/ | ||
rev: { | ||
dist: { | ||
files: { | ||
src: [ | ||
'<%= yeoman.dist %>/scripts/{,*/}*.js', | ||
'<%= yeoman.dist %>/styles/{,*/}*.css', | ||
'<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp}', | ||
'<%= yeoman.dist %>/fonts/{,*/}*.*' | ||
] | ||
} | ||
} | ||
}, | ||
useminPrepare: { | ||
html: '<%= yeoman.app %>/index.html', | ||
options: { | ||
dest: '<%= yeoman.dist %>' | ||
} | ||
}, | ||
usemin: { | ||
html: ['<%= yeoman.dist %>/{,*/}*.html'], | ||
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'], | ||
options: { | ||
dirs: ['<%= yeoman.dist %>'] | ||
} | ||
}, | ||
imagemin: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/images', | ||
src: '{,*/}*.{png,jpg,jpeg}', | ||
dest: '<%= yeoman.dist %>/images' | ||
}] | ||
} | ||
}, | ||
svgmin: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/images', | ||
src: '{,*/}*.svg', | ||
dest: '<%= yeoman.dist %>/images' | ||
}] | ||
} | ||
}, | ||
cssmin: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.dist %>/styles/main.css': [ | ||
'.tmp/styles/{,*/}*.css', | ||
'<%= yeoman.app %>/styles/{,*/}*.css' | ||
] | ||
} | ||
} | ||
}, | ||
htmlmin: { | ||
dist: { | ||
options: { | ||
/*removeCommentsFromCDATA: true, | ||
// https://github.com/yeoman/grunt-usemin/issues/44 | ||
//collapseWhitespace: true, | ||
collapseBooleanAttributes: true, | ||
removeAttributeQuotes: true, | ||
removeRedundantAttributes: true, | ||
useShortDoctype: true, | ||
removeEmptyAttributes: true, | ||
removeOptionalTags: true*/ | ||
}, | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>', | ||
src: '*.html', | ||
dest: '<%= yeoman.dist %>' | ||
}] | ||
} | ||
}, | ||
copy: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
dot: true, | ||
cwd: '<%= yeoman.app %>', | ||
dest: '<%= yeoman.dist %>', | ||
src: [ | ||
'*.{ico,png,txt}', | ||
'fonts/{,*/}*.*', | ||
'.htaccess', | ||
'index.txt', | ||
'images/{,*/}*.{webp,gif}' | ||
] | ||
}] | ||
}, | ||
server: { | ||
files: [{ | ||
expand: true, | ||
dot: true, | ||
cwd: '<%= yeoman.app %>/bower_components/font-awesome/fonts/', | ||
dest: '<%= yeoman.app %>/fonts/font-awesome', | ||
src: ['*'] | ||
}, { | ||
expand: true, | ||
dot: true, | ||
cwd: '<%= yeoman.app %>/bower_components/bootstrap/dist/fonts/', | ||
dest: '<%= yeoman.app %>/fonts/glyphicons', | ||
src: ['*'] | ||
}] | ||
} | ||
}, | ||
concurrent: { | ||
dist: [ | ||
'less', | ||
'imagemin', | ||
'svgmin', | ||
'htmlmin' | ||
] | ||
} | ||
}); | ||
|
||
grunt.registerTask('serve', function (target) { | ||
if (target === 'dist') { | ||
return grunt.task.run(['build', 'connect:dist:keepalive']); | ||
} | ||
|
||
grunt.task.run([ | ||
'clean:server', | ||
'less', | ||
'copy:server', | ||
'connect:livereload', | ||
'watch' | ||
]); | ||
}); | ||
|
||
grunt.registerTask('server', function () { | ||
grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.'); | ||
grunt.task.run(['serve']); | ||
}); | ||
|
||
grunt.registerTask('test', [ | ||
'clean:server', | ||
'less', | ||
'copy:server', | ||
'connect:test', | ||
]); | ||
|
||
grunt.registerTask('build', [ | ||
'clean:dist', | ||
'copy:server', | ||
'useminPrepare', | ||
'concurrent', | ||
'cssmin', | ||
'concat', | ||
'uglify', | ||
'copy', | ||
'usemin' | ||
]); | ||
|
||
grunt.registerTask('default', [ | ||
'jshint', | ||
'test', | ||
'build' | ||
]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# transfer.sh | ||
|
||
|
||
Development | ||
|
||
|
||
- grunt serve | ||
- grunt build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | ||
VAGRANTFILE_API_VERSION = "2" | ||
|
||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
# Every Vagrant virtual environment requires a box to build off of. | ||
config.vm.box = "puphpet/ubuntu1404-x64" | ||
config.vm.provider "vmware_fusion" do |v| | ||
v.gui = true | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "transfer.sh", | ||
"version": "0.0.0", | ||
"moduleType": [ | ||
"node" | ||
], | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"transfersh-web/bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"bootstrap": "~3.0.0", | ||
"modernizr": "~2.6.2", | ||
"typed.js": "https://github.com/mattboldt/typed.js.git" | ||
} | ||
} |
Oops, something went wrong.