Git Product home page Git Product logo

hack-example-site's Introduction

Hack Lang Example Site

Why does this site exist?

The purpose of this site is to provide examples of how to use the Hack Language. This site should help in the following ways:

  1. This site is written in Hack and is open source. You can browse the source code for real world examples
  2. You can clone and deploy this site yourself. This site is designed to be simple to make this as easy as possible.
  3. The contents of this site consist of a Cookbook of Hack Recipes. Each Recipe is a short Hack example that solves some common, interesting typing problem.

If you haven't already, I recommend checking out the official documentation.

Is this site hosted anywhere?

Yes, at cookbook.hacklang.org

Deploying the site

This site is intended to be easy to deploy. Install and configure HHVM and your webserver of choice, clone the GitHub and you should be done!

Installing HHVM & Webserver

You can either install one of the many HHVM packages or build it from source yourself. I recommend following this blog post to set up hhvm with FastCGI. If you're adventurous, the nightly builds are pretty cool too.

Cloning the hack-example-site GitHub

If you're reading this README you probably already found the source code, but the source code lives here.

After cloning the GitHub, run ./setup to pull in the required external dependencies.

Example setup for HHVM + Nginx on Ubuntu 13.10

Nginx is a popular webserver and what I used when building this site. Here are instructions for how I set up my environment.

Clone the GitHub

You can clone it wherever you like, but for this example I'm putting it in ~/hack-example-site

cd ~
git clone [email protected]:hhvm/hack-example-site.git

Run the setup script

// Assuming you cloned hack-example-site to ~/hack-example-site
cd ~/hack-example-site
./setup

Install Nginx

sudo apt-get install nginx

Install HHVM with FastCGI

echo deb http://dl.hhvm.com/ubuntu saucy main | sudo tee /etc/apt/sources.list.d/hhvm.list
sudo apt-get update
sudo apt-get install hhvm-fastcgi

Copy the HHVM config file

There is a simple HHVM config in this repo, which you can use. I just overwrite the server.hdf file, since that's the config that init.d uses. You can always edit the service or start hhvm yourself if you'd rather not overwrite server.hdf

// Assuming you cloned hack-example-site to ~/hack-example-site
// If you don't want to overwrite server.hdf you can always point hhvm
// to a config elsewhere
sudo cp ~/hack-example-site/hhvm.hdf /etc/hhvm/server.hdf

Set up the Nginx config

// Assuming you cloned hack-example-site to ~/hack-example-site
sudo cp ~/hack-example-site/nginx.conf /etc/nginx/sites-available/hack-example-site
sudo ln -s /etc/nginx/sites-available/hack-example-site /etc/nginx/sites-enabled/hack-example-site
// Disable the default config. Or don't. It's up to you.
sudo rm /etc/nginx/sites-enabled/default
// Update the root and fastcgi_param directives to point to ~/hack-example-site
sudo vim /etc/nginx/sites-available/hack-example-site
// Verify that the config parses
sudo nginx -t

Start everything up

sudo service hhvm-fastcgi start
sudo service nginx start

Load a page in your browser!

Try going to localhost in your browser of choice

hack-example-site's People

Contributors

darron avatar gabelevi avatar

Watchers

Jon Suderman avatar Andy Vanee avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.