https://github.com/chadxz/personal-site-rewrite
rewriting some of the dynamic functionality of chadmcelligott.com using backbone.js and require.js
https://github.com/chadxz/personal-site-rewrite
backbone gulp webpack
Last synced: 3 months ago
JSON representation
rewriting some of the dynamic functionality of chadmcelligott.com using backbone.js and require.js
- Host: GitHub
- URL: https://github.com/chadxz/personal-site-rewrite
- Owner: chadxz
- Created: 2014-03-04T13:54:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-08T22:44:09.000Z (about 11 years ago)
- Last Synced: 2025-01-23T22:18:34.013Z (5 months ago)
- Topics: backbone, gulp, webpack
- Language: JavaScript
- Size: 652 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#personal-site-rewrite
I'm trying to learn some backbone, so I decided to just rewrite the jquery mess on chadmcelligott.com to use backbone instead.
To make development easier, I also decided to try out require.js and gulp. I'm using require.js to structure my code in a more modular fashion, and gulp as a replacement for grunt because I'm not a huge fan of the way gruntfiles are a huge messy configuration file.
###installing dependencies
To install the dependencies needed to build/run the site:
```shell
npm install
bower install
```###running
To run the site in development mode:
```shell
gulp
```
To run the site in production mode:```shell
gulp serve-dist
```Production assets will be placed in app-dist/. To only build the production assets without running the site:
```shell
gulp build
```