A content management system in Angular.
Install Node.js, PHP 5.6, MySQL and Composer.
Install dependencies:
npm install -g bower
php composer.phar update
bower install
You must also get (or create) db.json and auth.json to run the PHP server.
Run the service:
php -S 127.0.0.1:8080 -t public
Your service will run at http://localhost:8080.
For convenience, a Makefile is included. Commands are make build, make up-dev, make up-prod, make down.
-
Your
masterbranch should point toorigin/master. -
NEVER EVER WORK ON
master. Keep themasterbranch updated with upstreamgit pull upstream master. It's only to be used a reference/starting point. -
In reference to the above point, create a different branch for the issue you are working on off your master branch like
git checkout -b username-work. -
Whenever you begin work, be sure to
git pull --rebase upstream master. -
When you have completed,
git push origin username-workand issue a PR towolfbeacon/4_cms_website. -
In case you have a PR pending on this branch,
checkoutto your localmasterbranch,checkoutanotherworkbranch and work there. Needless to say,git pull --rebase upstream masteris always important.