-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from NathanWorkman/develop
Develop
- Loading branch information
Showing
460 changed files
with
8,341 additions
and
6,047 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
seeker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ install: | |
- pip install -r requirements.txt | ||
|
||
script: | ||
- tox | ||
# - tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"python.pythonPath": "/Users/nathan/.pyenv/versions/seeker/bin/python" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,15 @@ | ||
FROM python:3.7 | ||
FROM python:3.6 | ||
MAINTAINER Nathan Workman <nathancworkman@gmail.com> | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
|
||
RUN mkdir /code | ||
WORKDIR /code | ||
|
||
RUN apt-get update && apt-get install -y curl && apt-get -y install sudo | ||
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | ||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | ||
RUN echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | ||
|
||
RUN apt-get update && apt-get install -y nodejs yarn | ||
RUN sudo npm install -g gulp | ||
|
||
COPY ./package.json /code/package.json | ||
RUN apt-get update && apt-get -y upgrade && apt-get install -y sudo | ||
ADD requirements.in /code/ | ||
|
||
RUN pip install pip==18.1.0 | ||
RUN pip install pip==9.0.3 | ||
RUN pip install -r requirements.in | ||
RUN yarn | ||
|
||
ADD . /code/ | ||
ADD . /code/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
#!/bin/bash | ||
|
||
cd seeker | ||
gulp build | ||
python manage.py migrate | ||
python manage.py collectstatic --no-input | ||
gulp | ||
python manage.py runserver |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.