Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robbestad/robbestad.com

Robbestad.com - reactified
https://github.com/robbestad/robbestad.com

Last synced: 20 days ago
JSON representation

Robbestad.com - reactified

Awesome Lists containing this project

README

        

# Robbestad.com

## New install

Do this

heroku plugins:install git://github.com/ddollar/ heroku-accounts.git
heroku accounts:add personal --auto
git remote add heroku [email protected]:robbestad-blog.git
heroku keys:add
heroku accounts:set personal

## News

> Completely reactified

> Uses react-router

> Applies the Flux architecture

> All data are pulled from an API and stored in a single store on load

Check out [the site](http://www.robbestad.com/)

## Workflow

> npm start (for development)

> This set up the build environment and starts a webserver at http://localhost:3000

> When changes are made in the __scss__ or __js__ files, the bundles are automatically
recompiled.

> This project is built with regards for deployment on Heroku. Issue __git push heroku master__ for
deployment.

> For deployment on a standard node server, simply build with __npm build__ and start the server with
__node index.js__.

## TODO

- Write more ___articles___
- Make a prettier landing page

## Stuff that's done

- Set up nodejs server with ___express 4___
- Configged package.json & gulpfile.js
- Make a ___Heroku-compatible___ setup
- Added the following Heroku config:

```
BUILDPACK_URL: https://github.com/heroku/heroku-buildpack-nodejs
NODE_ENV: production
```