HYDRA content engine Ember frontend app
This project requires Docker Compose to develop and test. The Yarn package manager is also required, and is used instead of npm
.
- Clone repository
- Override any applicable development environment variables (see Environment Variables below)
- In the project root, run
yarn run start
- The server is now accessible on
http://localhost:8405/
(or whatever port you configure)
You can load an interactive terminal for the app container via yarn run terminal
. This will allow you to add, remove, or upgrade project dependencies using Yarn (among other things). Note: the application instance must be running via yarn run start
for the terminal to load.
Production environment variables are not under version control, per Part 3 of the 12 Factors. As such, the dotenv package is used to manage your variables locally.
- Create a
.env
file in the project root (at the same level as thepackage.json
file) - Set (or change) values for the following variables:
EMBER_SERVE_PORT=8405
EMBER_LIVER_PORT=8406
EMBER_TESTS_PORT=8407
EMBER_GRAPH_PROXY=http://docker.for.mac.host.internal:8400
Note: If you are not running on OSX, or you have customized the cygnusb2b/hydra-engine port, you will need to customize the EMBER_GRAPH_PROXY
URL to point to the IP/Hostname and port of your graph instance:
- AWS:
curl http://169.254.169.254/latest/meta-data/local-ipv4
- *nix:
ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+'
The development and testing environments are now set up using Docker Compose. Changes to environments (such as database version or new environment variables) should be made within the relevant docker-compose.yml
file.
To start up the development environment, execute yarn run start
from the project root. This will initialize the docker environment for this project and boot up your application and any dependant containers (such as mongo or redis.) The first execution will take some time to download and configure docker images. To stop your environment, press CTRL+C
in your terminal. If your environment does not shut down cleanly, you can execute yarn run stop
to clean up and shutdown the environment.
You can optionally execute yarn run start &
to cause your terminal to return to the prompt immediately (logs will continue to display) to allow you to execute additional commands. To stop your environment, execute yarn run stop
.
To re-initialize your entire environment, execute yarn run stop
to shutdown. Then run docker volume rm hydraapp_node_modules
to remove the cached dependancies. Finally, execute docker-compose -p hydraapp rebuild
to force rebuilding the application from the project Dockerfile
(Typically only needed when making changes to the docker-compose.yml
configuration.) Executing yarn run start
again will re-initialize and start up the environment from scratch.
The testing framework runs within a second Docker Compose environment defined in test/docker-compose.yml
. Primarily the only difference between dev and test is that the containers shut down after execution rather than watch for changes.
The test environment can be booted and run by executing yarn run test
or yarn run coverage
, or manually via docker-compose -p hydraapptest -f test/docker-compose.yml run --entrypoint "yarn run test" test
.
[ add test doc for Qunit/ember ]
Note: the test command will also execute the lint
command. In other words, if lint errors are found, the tests will also fail!
By default, running yarn run test
will run all test files. You can optionally specify the tests to run by executing yarn run test tests/some/test.spec.js
, or using a glob: yarn run test "tests/some-folder/*.js"
(make sure you include the quotes). This is usually more efficient when writing new tests, so you don't have to wait for the entire test suite to finish when making tweaks.
You must ensure that new tests will run successfully as an individual file and as a part of the global test suite. The test(s) should pass and the container should properly exit and tear down. For example, if you've just created the/tests/my-cool-test.spec.js
test file, then both of these commands should meet the success conditions: yarn run test
and yarn run test tests/my-cool-test.spec.js
.
Test coverage is handled by Instanbul/nyc. To view a coverage report, execute yarn run coverage
at the root of the project. When adding/modifying code, the coverage should preferably stay the same (meaning new tests were added) - or get better!