Skip to content

isabek/angularfb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angularfb

Bootstrap for using Angular.JS application with Facebook Login

Installation

  • set up the virtual host in http-vhosts.conf file (in case you're using apache)
<VirtualHost *:80>
    ServerName appname.dev
    ProxyRequests off
    <Proxy *>
        Order allow,deny
        Allow from all
    </Proxy>
    ProxyPass / http://localhost:5000/
    ProxyPassReverse / http://localhost:5000/
    ProxyPreserveHost on
</VirtualHost>
  • add 127.0.0.1 appname.dev to your hosts file
  • run $ npm install within project directory
  • install foreman $ npm install -g foreman (read more about foreman)
  • create .env file based on .env.example
  • start app with $ foreman start

Deploying to Heroku - RTFM#1! && RTFM#2!


Adding front-end libraries

bower install <package-name> --save

About

Facebook Login with Angular

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 94.6%
  • CSS 5.4%