Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server에서 classifty_color 및 requirements.txt 위치 수정 #103

Merged
merged 6 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
#secure: "98d4b5dec11e52863538a00ea274cc4f5be90279"
install:
- cd Backend
- cd team18
- pip install -r requirements.txt
- cd ..
- pip install coveralls
- gem install coveralls-lcov
- pip install Pillow==8.4
Expand Down
Binary file modified Backend/team18/.coverage
Binary file not shown.
1 change: 1 addition & 0 deletions Backend/team18/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
media.zip filter=lfs diff=lfs merge=lfs -text
7 changes: 6 additions & 1 deletion Backend/team18/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ FROM snuspl/swpp:practice11
VOLUME /app
WORKDIR /app


COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt

COPY . .

# Environment variables for django deployment
ENV DEBUG=False
ENV DEBUG=True
ENV SECRET_KEY=swpp22fwsecretkeygeneratebygajagajagoblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblahblah
ENV SECURE_HSTS_SECONDS=31536000
# ENV SECURE_SSL_REDIRECT=True
Expand Down
Loading