-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Django 3.2; support for Twitter v.2 filtered-stream; deprecation of v 1.1 endpoints and credentials. Co-authored-by: Dolsy Smith <[email protected]> Co-authored-by: Adhithya Kiran <[email protected]>
- Loading branch information
1 parent
282e18e
commit a16130d
Showing
13 changed files
with
184 additions
and
51 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 |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
FROM gwul/sfm-base@sha256:0b80a3d3562cdb4d631fbb55b9bd24889312838cbd27cd33e14cc0c18405f007 | ||
MAINTAINER Social Feed Manager <[email protected]> | ||
|
||
ARG build_version=release | ||
|
||
# Install apache | ||
RUN apt-get update && apt-get install -y \ | ||
apache2=2.4* \ | ||
apache2-dev=2.4* | ||
|
||
ADD . /opt/sfm-ui/ | ||
WORKDIR /opt/sfm-ui | ||
RUN python -m pip install -r requirements/common.txt -r requirements/release.txt | ||
RUN python -m pip install -r requirements/common.txt -r requirements/${build_version}.txt | ||
|
||
# Adds fixtures. | ||
ADD docker/ui/fixtures.json /opt/sfm-setup/ | ||
|
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 |
---|---|---|
|
@@ -2,9 +2,11 @@ | |
FROM gwul/sfm-base@sha256:0b80a3d3562cdb4d631fbb55b9bd24889312838cbd27cd33e14cc0c18405f007 | ||
MAINTAINER Social Feed Manager <[email protected]> | ||
|
||
ARG build_version=release | ||
|
||
ADD . /opt/sfm-ui/ | ||
WORKDIR /opt/sfm-ui | ||
RUN pip install -r requirements/common.txt -r requirements/release.txt | ||
RUN pip install -r requirements/common.txt -r requirements/${build_version}.txt | ||
|
||
ADD docker/consumer/invoke_consumer.sh /opt/sfm-setup/ | ||
RUN chmod +x /opt/sfm-setup/invoke_consumer.sh | ||
|
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 |
---|---|---|
|
@@ -2,9 +2,11 @@ | |
FROM gwul/sfm-base@sha256:0b80a3d3562cdb4d631fbb55b9bd24889312838cbd27cd33e14cc0c18405f007 | ||
MAINTAINER Social Feed Manager <[email protected]> | ||
|
||
ARG build_version=release | ||
|
||
ADD . /opt/sfm-ui/ | ||
WORKDIR /opt/sfm-ui | ||
RUN pip install -r requirements/common.txt -r requirements/release.txt | ||
RUN pip install -r requirements/common.txt -r requirements/${build_version}.txt | ||
|
||
# Adds fixtures. | ||
ADD docker/ui/fixtures.json /opt/sfm-setup/ | ||
|
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
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
Oops, something went wrong.