Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 839 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 839 Bytes

ReactJS.NET Site

This is the website for ReactJS.NET. It consists of two parts:

To set up the site as it's configured in production:

# Install Nginx and HHVM (or PHP-FPM)
apt-get install nginx-full hhvm
# Install Nginx configuration
ln -s /var/www/reactjs.net/site/nginx.conf /etc/nginx/sites-enabled/reactjs.net && /etc/init.d/nginx reload
# Install Jekyll and other dependencies
gem install jekyll jekyll-assets bourbon
# Build the site
cd jekyll
jekyll build

When developing, you can run jekyll serve -w to start a server at localhost:4000 and automatically rebuild when any files are changed.