agehlers / devex

Mean app for bc developers exchange

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BCDevExchange Application

The BCDevExchange is a platform for providing new ways for British Columbia's public sector to connect with developers and other IT professionals.

The latest version is a mean.js application running in OpenShift using Docker.


Table of Contents


Contribute

We are open to pull requests. Please read our contributing guidelines.

Development

Prerequisites: Docker

To get up and running developing, run the following to set things up the first time:

$ setup.sh

This will start a container running mongo and build a new image for the application code. If you already have an instance of mongo running then you will likely get errors. Make sure to shutdown your local mongo instance.

Once setup has finished you can run the codebase with:

$ dev.sh

This will run the application image and link it to your running database container. It will not start the application, however, but put you oin the command line ready to do so. By default the application starts in development mode and if this is the first time running you should seed the dtabase users, so start the first time with:

$ MONGO_SEED=true npm start

Once the seeding is done you need not do it again unless you lose your mongo container and data somehow, so each other time runing the application you can simply run

$ npm start

Notes

The root files are NOT mounted in the container in the same way as the rest of the code. Therefore, if you are adding a new module through bower or npm you will need to update the local package.json or other files appropriately.

The node_modules directory does NOT exist in the repo and should not be added in case you accidentally run npm install locally

Production Mode: In Production:

MONGO_SEED=true npm run start:prod
npm run start:prod

Tests:

$ npm test

This will run both the server-side tests (located in the app/tests/ directory) and the client-side tests (located in the public/modules/*/tests/).

To execute only the server tests, run the test:server task:

$ npm run test:server

To execute only the server tests and run again only changed tests, run the test:server:watch task:

$ npm run test:server:watch

And to run only the client tests, run the test:client task:

$ npm run test:client

Running with TLS (SSL) Application will start by default with secure configuration (SSL mode) turned on and listen on port 8443. To run your application in a secure manner you'll need to use OpenSSL and generate a set of self-signed certificates. Unix-based users can use the following command:

$ npm run generate-ssl-certs

After you've generated the key and certificate, place them in the config/sslcerts folder.

Finally, execute prod task npm run start:prod

  • enable/disable SSL mode in production environment change the secure option in config/env/production.js

Copyright and License

Code and documentation copyright 2016-2017 the BC Developers' Exchange. Code released under the Apache License, Version 2.0.

About

Mean app for bc developers exchange

License:Apache License 2.0


Languages

Language:JavaScript 59.1%Language:HTML 30.5%Language:CSS 9.2%Language:Shell 0.6%Language:Groovy 0.5%Language:Perl 0.1%