1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 23:29:42 +00:00

Launch couch as a service

This commit is contained in:
Emma 2019-06-27 13:11:57 -06:00
parent 5d8f536cb6
commit 88644894f9
2 changed files with 4 additions and 4 deletions

View file

@ -1,14 +1,14 @@
kind: pipeline kind: pipeline
name: default name: default
steps: services:
- name: launch couch - name: couchdb
image: couchdb:2.3 image: couchdb:2.3
environment: environment:
COUCHDB_USER: admin COUCHDB_USER: admin
COUCHDB_PASSWORD: password COUCHDB_PASSWORD: password
detach: true
steps:
- name: test - name: test
image: python:3.6 image: python:3.6
commands: commands:

View file

@ -1,5 +1,5 @@
SECRET_KEY = b'dev' SECRET_KEY = b'dev'
COUCH_URL='http://localhost:5984' COUCH_URL='http://couchdb:5984'
COUCH_USERNAME='admin' COUCH_USERNAME='admin'
COUCH_PASSWORD='password' COUCH_PASSWORD='password'
COUCH_DATABASE='humulus' COUCH_DATABASE='humulus'