Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/robbestad/robbestad.com
- Owner: robbestad
- Created: 2014-10-08T11:18:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-10T19:07:47.000Z (over 9 years ago)
- Last Synced: 2024-04-13T17:11:01.206Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```