Docker Community Edition (CE) >= 17.06 Docker Compose >= 1.18
Follow the Docker installation instructions for your OS.
This is not a full guide to Docker and Docker Compose, so please consult other guides to learn more about those tools.
The docker-compose.yml is configured to mount the git repo on your host filesystem into the Docker container so that any changes you make on your host machine will be synced into the container and vice versa.
All config should be added in a file called config.yml
. A sample config.example.yml
is provided, you need to copy it and edit any parts that ask you to enter in your own information.
$ cp config.example.yml config.yml
# Open it in your preferred text editor
Algolia is used as our search engine and in order for it to operate properly for everyone, we each need our own index.
- in
config.yml
set your github username as the value forALGOLIA_INDEX_PREFIX
. This will point to the search index matching your local environment.
# Install node dependencies
$ docker-compose run --rm web npm install
# Build static assets bundle
$ docker-compose run --rm web npm run build
# Run dev server
$ docker-compose up
You should be able to view the web app in your browser at http://localhost:8080.
By default, this assumes that you have also set up askdarcel-api project using
the Docker setup instructions and that the API server is running. If you want to
target a different instance of askdarcel-api, you can modify the API_URL
environment variable in docker-compose.yml.
We recommend using nvm (Node Version Manager) or Docker to ensure that the versions of Node.js and npm are the same across development, Travis CI, staging, and production environments.
After installing nvm, to install both Node.js and npm run from the top of the git repo:
$ nvm install # Reads from .nvmrc
To install the dependencies, from the top directory run
npm install
To build the bundled script with webpack run
npm run build
And to run the dev server, run
npm run dev
It's a framework for running end-to-end tests (read: real browser tests) that injects your tests onto an existing web page. Architecturally, they spin up a lightweight proxy server that wraps your web page, and when you connect a browser to the proxy server, it serves the requested page with the test driver injected into it.
It's essentially an alternative to writing Selenium tests, and I've found it nice to use because it mimics many of the common HTML5 DOM APIs and because they've added a lot of reasonable default behavior that Selenium lacks, such as properly waiting for events to finish running and for elements to appear before running your assertions.
If you are not using Docker and all the services are bound to localhost, then you should just be able to run:
$ npm run testcafe -- --skip-js-errors chrome testcafe/*.js
Note: Make sure you have the dev server running (npm run dev
) before you try running the above
If you are using Docker, then you'll need to run it somewhat like this:
$ docker-compose run --rm -p 1337:1337 -e BASE_URL=http://web:8080 web npm run testcafe -- --skip-js-errors remote --skip-js-errors --hostname localhost --ports 1337,1338 ./testcafe/
This will spin up a web server at http://localhost:1337/ and print out a URL to use. You should manually enter it into your browser to start the tests.
Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs