Actions
API server » History » Revision 4
« Previous |
Revision 4/5
(diff)
| Next »
Tom Clegg, 05/14/2014 03:05 AM
API server¶
This is a reference page for the API server component, colloquially "apiserver", aimed at developers.
Resources:- Install: install the API server and create standard objects
- Run test suite: see below
- Hacking API server
Prerequisites¶
Dependencies are documented at http://doc.arvados.org/install/install-api-server.html.
Test suite¶
Summary:
git clone https://github.com/curoverse/arvados.git cd arvados/services/api cp -i config/application.yml.example config/application.yml edit config/application.yml edit config/database.yml bundle install bundle exec rake test
Generating a self-signed certificate¶
Useful for dev/test environments.
openssl req -new -x509 -nodes -out ./self-signed.pem -keyout ./self-signed.key -days 3650 -subj '/CN=arvados.example.com'
Updated by Tom Clegg over 10 years ago · 4 revisions