Skip to content

open-learning-exchange/planet

 
 

Repository files navigation

BeLL apps Angular reboot prototype Planet

Project to create a prototype for a reboot of the BeLL apps using Angular5 & CouchDB2.

To work on this

The only prerequisite is Vagrant. If you don't know about it, please do some research and try it. After cloning the repository, run vagrant up in the console. Once it's done installing the virtual machine it'll automatically start compiling the app. After about 10 seconds, you can open the app at localhost:3000.

Project guidelines

  • Please check out the project page for available tasks to work on.
  • Before contributing also be sure to read our style guide
  • Please clone the repository rather than forking, unless you're from outside the organization. It's easier for us to collaborate from a new branch on the same repository.
  • After cloning the repository please run npm run install-hooks to add the git hooks to your local repository.
  • If you see something that needs work, please create an issue. If the issue is on the frontend, please try to make it specific to one component.
  • To work on an issue, create a new branch with a descriptive title.
  • Please wait for at least two positive reviews before merging a PR into the master branch

Unit & end-to-end tests

There are two ways for running the tests. The first listed works from the host machine, and the second works after vagrant ssh and cd /vagrant:

npm run v-test (from host) or ng test (from vagrant) - Unit tests Open localhost:9876 once this is done compiling

npm run v-e2e (from host) or ng e2e (from vagrant) - End-to-end tests Results will appear in the console

Additional commands

Similarly, we have a few other npm commands that work from the host machine to run the ng commands from the Angular CLI

npm run v-serve = ng serve

npm run v-build = ng build

npm run v-lint = ng lint

npm run v-lint-fix = ng lint --fix This will fix any lint errors that TSLint can automatically fix

Also, the npm start command can include an additional LNG variable to serve from different language files. This must be run from within the vagrant (so after vagrant ssh and cd /vagrant) and runs in the format:

LNG=es npm start

This would serve the app from the Spanish language files.

Troubleshooting

I switched branches and now I'm missing a dependency...

The ideal solution would be to ssh into your vagrant and run npm install:

vagrant ssh
cd /vagrant
npm install

This doesn't always work. If you're having trouble or need to revert to the exact dependencies listed on the package.json, you need to remove all packages then install (after cd /vagrant above, run the commands):

rm -rf node_modules/*
npm install

The trailing /* will remove all files & sub-directories of node_modules. You won't be able to remove node_modules because of the link between the vagrant VM and your host.

Cannot GET /

There are two things you can try for this. First involves the node-sass module which can be problematic. You will need to rebuild it from the VM:

vagrant ssh
cd /vagrant
npm rebuild node-sass

The second is to rebuild the application. First you need to cancel the app in the screen with screen -x then CTRL-C. Then you can bring the app back up with one of the above commands or in another screen session with vagrant screen -dmS build bash -c 'cd /vagrant; ng serve'.