beerdom
v1.0.0
Published
Find inexpensive beer in your neighborhood beer kingdom.
Readme
Beerdom Requirements
You'll need to install node.js locally to do anything on this project. https://nodejs.org
Installing node modules
Install node's http-server module globally. This will allow you to start a quick local web server in any directory.
npm install webpack-dev-server -g
npm install firebase-tools -gClone the Bitbucket repository locally
git clone https://[email protected]/teambeerdom/beerdom.gitNavigate to the beerdom source folder directory and run the following.
npm installThis should install all of the dependencies into a directory called "node_modules".
In the console run the following
webpack -wThis will compile all of the javascript, etc. and watch for changes that it should re-compile if you modify a source file.
In another console navigate to the beerdom source folder directory and run the following.
webpack-dev-server --content-base public/That will create a web server on localhost port 8080 that routes all paths through index.html, which is important after the react-router upgrade.
Open a new browser window or tab. Go to the following:
http://localhost:8080/This should open your default browser at the location specified.
