Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 710 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 710 Bytes

Caitlin's Cook Book

powered by

To install clone the repo, open comand line, "cd" in to the html directory within this app, run "npm install",run "bower install", run "grunt watch"

Please Note you must have a nginx server running this app with cross site enabled

and you must add the server to your hosts file

server {
    add_header Access-Control-Allow-Origin *; #CORS for ajax calls
    server_name bp.localhost;
    root /path/to/html;
        index index.html index.htm;
        location / {
                try_files $uri $uri/ /index.html;
        }
}