Skip to content
This repository has been archived by the owner on Apr 20, 2019. It is now read-only.

Commit

Permalink
switch to Django + ES
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe committed Jan 5, 2017
1 parent 23413b9 commit dfe2db1
Show file tree
Hide file tree
Showing 149 changed files with 11,328 additions and 12,691 deletions.
6 changes: 0 additions & 6 deletions .gitignore
@@ -1,8 +1,2 @@
/TODO
/site/
node_modules/
cover.out
gin-bin
/server
/autocompeter
/run-dev-server.sh
31 changes: 13 additions & 18 deletions .travis.yml
@@ -1,23 +1,18 @@
language: go
sudo: true
go:
- 1.4
#- tip

services:
- redis-server

env:
- REDISDATABASE=8

language: python
python: 3.5
branches:
only:
- master

addons:
apt:
packages:
- oracle-java8-set-default
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.1.deb && sudo dpkg -i --force-confnew elasticsearch-5.1.1.deb && sudo service elasticsearch start
install: bin/travis/install.sh
before_script:
- bin/travis/lint.sh
- bin/travis/setup.sh
script:
- go test -v ./...
- ./travis-e2e.sh

notifications:
email:
on_success: never
- bin/travis/test.sh
7 changes: 7 additions & 0 deletions Dockerfile
@@ -0,0 +1,7 @@
FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/

0 comments on commit dfe2db1

Please sign in to comment.