-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from braican/6.0.0
6.0.0
- Loading branch information
Showing
2,269 changed files
with
60,789 additions
and
88,081 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,20 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,30 @@ | ||
WORDPRESS_TITLE=YOUR THEME NAME | ||
WORDPRESS_THEME_NAME=your-theme-name | ||
WORDPRESS_URL=https://your-theme-name.ups.dock | ||
WORDPRESS_ADMIN_USER=admin | ||
WORDPRESS_ADMIN_EMAIL=[email protected] | ||
WORDPRESS_ADMIN_PASSWORD=password | ||
|
||
WORDPRESS_DB_HOST=db | ||
WORDPRESS_DB_NAME=wordpress | ||
WORDPRESS_DB_USER=wordpress | ||
WORDPRESS_DB_PASSWORD=wordpress | ||
|
||
# Runtime configuration for upstatement/ups-dock | ||
# See https://github.com/upstatement/ups-dock | ||
UPS_DOCK_NAME=YOUR THEME NAME | ||
|
||
# Runtime configuration for jwilder/nginx-proxy | ||
# See https://github.com/jwilder/nginx-proxy | ||
VIRTUAL_HOST=your-theme-name.ups.dock | ||
HTTPS_METHOD=noredirect | ||
|
||
# Runtime configuration for richarvey/nginx-php-fpm | ||
# See https://github.com/richarvey/nginx-php-fpm | ||
RUN_SCRIPTS=1 | ||
|
||
# Comment out this next line to avoid permissions issues when not mounting the | ||
# theme codebase into the container via `volumes` in `docker-composer.yml`. | ||
# We're skipping it by default as it's not strictly required when using `volumes` | ||
# and it adds significantly to boot time with larger codebases. | ||
SKIP_CHOWN=1 |
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 @@ | ||
{ | ||
"extends": ["plugin:prettier/recommended"], | ||
"plugins": ["prettier"], | ||
"parser": "babel-eslint", | ||
"rules": { | ||
"prettier/prettier": "error" | ||
} | ||
} |
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
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,3 @@ | ||
[submodule "src/themes/ananke"] | ||
path = src/themes/ananke | ||
url = https://github.com/budparr/gohugo-theme-ananke.git |
File renamed without changes.
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 @@ | ||
v10.5.0 |
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,11 @@ | ||
|
||
{ | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
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 @@ | ||
language: php | ||
php: | ||
- '7.2' | ||
cache: | ||
directories: | ||
- node_modules | ||
|
||
before_install: | ||
- nvm install | ||
|
||
install: | ||
- npm install | ||
|
||
script: | ||
- npm run lint:scripts |
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
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 |
---|---|---|
@@ -1,36 +1,59 @@ | ||
braican.com | ||
=========== | ||
# braican.com | ||
|
||
I like to build websites. | ||
|
||
This is the public repository of [braican.com](http://braican.com), [Nick Braica's](http://twitter.com/braican) portfolio site. | ||
|
||
Each iteration of braican.com was pretty much a ground-up build. In other words, there was no code sharing between one version and another. | ||
|
||
## version 5 | ||
## The Versions | ||
|
||
### Version 6 | ||
`released 07/09/2018` | ||
|
||
Version six is a slight aesthetic improvement, but a total overhaul in the technology and the code behind the site. I kept WordPress on to handle my content, but am using it solely as a platform to create a content API that provides json endpoints for the data. The front end is handled by Hugo, a static site generator. The json data is downloaded via a gulp task that Hugo then renders. | ||
|
||
The reasoning for the change was simple - I don't have that much content, and I didn't need an entire CMS to handle just some case studies and an introduction. | ||
|
||
|
||
### Version 5 | ||
`released 01/06/2018` | ||
|
||
Started Friday, December 8, 2017. Simple site with goofy intro and a list of projects. | ||
![v5](assets/braican.com-v5.jpg?raw=true) | ||
|
||
The fifth iteration of braican.com saw a focus on a simpler approach. A brief intro, thumbnails of projects that link to brief case studies, and a contact form make up the whole site. This version is completely powered by WordPress. | ||
|
||
I started working on the site on December 8, 2017, and initially launched it about a month later. | ||
|
||
|
||
## version 4 | ||
### Version 4 | ||
`released 03/19/2014` | ||
|
||
A custom, one page WordPress theme that consists of sections for my work, about me, and contact links. The theme is responsive, and it does some sweet ajax magic to bring in the portfolio items. | ||
![v4](assets/braican.com-v4.jpg?raw=true) | ||
|
||
## version 3 | ||
Moving to a CMS driven site for the first time, I developed a custom, one page WordPress theme that consisted of sections for my work, about me, and contact links. This is the first braican.com iteration to be fully responsive. I utilized AJAX and the HTML5 history API to navigate to the portfolio items and case studies. To date, this has been the longest running braican.com iteration. | ||
|
||
### Version 3 | ||
`released 09/30/2011` | ||
|
||
Created using HTML/CSS/JavaScript, with WordPress being the back end of the blogging funtionality. The theme consisted of large banners across each page with a fixed, full-screen image. This site is not responsive. | ||
![v3](assets/braican.com-v3.jpg?raw=true) | ||
|
||
## version 2 | ||
`released 10/20/2010` | ||
Another static site with WordPress driving the blogging funtionality. This iteration was a complete redesign from the previous site, and featured large banners across each page with a fixed, full-screen image. This site is not responsive, but does include some nifty animations throughout. And man, I really liked those sliders on the homepage. | ||
|
||
This is the site that was live when I was hired as a co-op at The Boston Globe, as well as when I graduated from college and was hired full-time by Tank Design. So I guess you could say that this one was good enough to get me a couple jobs. | ||
|
||
** Interesting | ||
|
||
Way back machine. | ||
|
||
### Version 2 | ||
`released 10/20/2010` | ||
|
||
![v2](assets/braican.com-v2.jpg?raw=true) | ||
|
||
## Version 1 | ||
A modification of the first iteration, this was a static html site that used WordPress only to power the blog. This version highlighted the breadth of work that I had completed up until that point, which included a slew of classwork and other personal projects in several different mediums that were completed throughout the years. | ||
|
||
I was also able to highlight The Girl From Last Night, perhaps the college project I'm most proud of. | ||
|
||
### Version 1 | ||
|
||
`released ??/??/??` | ||
|
||
This one's been lost to time. | ||
This one's been lost to time. It was a very basic, static site that highlighted some schoolwork. There was a really cool grayscale gradient background. |
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 |
---|---|---|
|
@@ -67,4 +67,4 @@ server { | |
allow all; | ||
auth_basic off; | ||
} | ||
} | ||
} |
File renamed without changes.
0
scripts/setup.sh → api/scripts/setup.sh
100644 → 100755
File renamed without changes.
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.