diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..b4ad34e --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,18 @@ +const gulp = require('gulp'), + concat = require('gulp-concat'), + uglify = require('gulp-uglify'), + rename = require('gulp-rename'), + connect = require('gulp-connect'); + +gulp.task('webserver', () => { + connect.server({ + livereload: true + }); +}); +gulp.watch([ + 'js/*.js', + 'lib/*.js' +]); +gulp.task('default', [ + 'webserver' +]); diff --git a/index.html b/index.html index 7a4cc09..8293230 100644 --- a/index.html +++ b/index.html @@ -14,9 +14,9 @@ - - - + + + @@ -233,4 +233,4 @@

Lucas Personal Desktop '16

- \ No newline at end of file + diff --git a/js/angular-animate.js b/lib/angular-animate.js similarity index 100% rename from js/angular-animate.js rename to lib/angular-animate.js diff --git a/js/angular.min.js b/lib/angular.min.js similarity index 100% rename from js/angular.min.js rename to lib/angular.min.js diff --git a/js/jquery-1.10.2.js b/lib/jquery-1.10.2.js similarity index 100% rename from js/jquery-1.10.2.js rename to lib/jquery-1.10.2.js diff --git a/js/jquery-ui.js b/lib/jquery-ui.js similarity index 100% rename from js/jquery-ui.js rename to lib/jquery-ui.js diff --git a/package.json b/package.json new file mode 100644 index 0000000..eb06376 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "lucas-personal-desktop", + "version": "1.0.0", + "description": "Personalized CV with win95 aesthetics", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/machad0/lucas-personal-desktop.git" + }, + "keywords": [ + "win95", + "desktop", + "aesthetics", + "CV" + ], + "author": "Lucas Machado", + "license": "ISC", + "bugs": { + "url": "https://github.com/machad0/lucas-personal-desktop/issues" + }, + "homepage": "https://machad0.github.io/lucas-personal-desktop/", + "dependencies": { + "gulp-concat": "^2.6.1", + "gulp-connect": "^5.0.0", + "gulp-rename": "^1.2.2", + "gulp-uglify": "^2.0.1" + }, + "devDependencies": { + "gulp": "^3.9.1" + } +} diff --git a/templates/lucas-figueira-curriculum-eng.pdf b/templates/lucas-figueira-curriculum-eng.pdf new file mode 100644 index 0000000..7c02545 Binary files /dev/null and b/templates/lucas-figueira-curriculum-eng.pdf differ