-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2 kick off with docker support
- Loading branch information
Showing
212 changed files
with
37 additions
and
11,424 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,8 @@ __pycache__ | |
.vagrant | ||
|
||
*.c9 | ||
|
||
.Python | ||
.python-version | ||
lib | ||
include |
This file was deleted.
Oops, something went wrong.
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,15 +1,21 @@ | ||
# TODO: split this into base, develop, and release images | ||
### This file defines the ancfinder container | ||
FROM python:3.7.0 | ||
|
||
FROM python:3.6.4 | ||
WORKDIR /srv/app | ||
COPY . /srv/app | ||
|
||
COPY ./requirements.txt /srv/app/requirements.txt | ||
RUN pip install -r requirements.txt | ||
|
||
COPY ./ancfinder /srv/app/ancfinder | ||
COPY ./ancfinder_site /srv/app/ancfinder_site | ||
COPY ./manage.py /srv/app/manage.py | ||
|
||
|
||
|
||
EXPOSE 8000 | ||
|
||
# Ensure that the model and database are correctly mapped | ||
RUN python3 manage.py makemigrations | ||
RUN python3 manage.py migrate | ||
# RUN python3 manage.py makemigrations | ||
# RUN python3 manage.py migrate | ||
|
||
# Run these when the container launches | ||
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | ||
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
66 changes: 0 additions & 66 deletions
66
ancfinder_site/ext/django-annotator-store/annotator/models.py
This file was deleted.
Oops, something went wrong.
56 changes: 0 additions & 56 deletions
56
ancfinder_site/ext/django-annotator-store/annotator/templates/annotator/editor.html
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
ancfinder_site/ext/django-annotator-store/annotator/tests.py
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
ancfinder_site/ext/django-annotator-store/annotator/urls.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.