Skip to content

Commit

Permalink
Merge pull request #338 from SWE574-Fall2023-Group1/feature/331-minor…
Browse files Browse the repository at this point in the history
…-refinements

Feature/331 minor refinements
  • Loading branch information
sadikkuzu authored Dec 25, 2023
2 parents 0256a41 + 5b96f10 commit 0ee11ca
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docker --version
docker-compose --version
make env-files
docker compose up -d --build
docker compose up -d --build --quiet-pull --remove-orphans
docker compose ps
docker network ls
docker compose logs db
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
docker --version
docker-compose --version
make env-files
docker compose up -d --build
docker compose up -d --build --quiet-pull --remove-orphans
docker compose ps
docker network ls
docker compose logs frontend
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This repository contains Group 1's project for SWE574 - Software Development As
For further information and documentation, check our [wiki](https://github.com/SWE574-Fall2023-Group1/SWE574-Fall2023-G1/wiki).

### Group 1 is comprised of:
- [Ayhan Çavdar](https://github.com/ayhncvdr)
- [Ayhan Çavdar](https://github.com/ayhncvdr2)
- [Aykut Kantaş](https://github.com/aykutkantas)
- [Deniz Baran Aslan](https://github.com/dbaslan)
- [Kemal Caner Ertam](https://github.com/ckertam)
Expand Down
9 changes: 5 additions & 4 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ WORKDIR /backend
COPY requirements.txt .

RUN : \
&& apt-get update -y \
&& apt-get update -qqqy \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get install -y --no-install-recommends \
&& apt-get install -qqqy --no-install-recommends \
binutils libproj-dev gdal-bin \
gcc g++ \
> /dev/null \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& python -m pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt \
&& python -m pip install --no-cache-dir -qU pip \
&& pip install --no-cache-dir -qr requirements.txt \
&& python -m nltk.downloader punkt averaged_perceptron_tagger wordnet stopwords \
&& :
# Install system dependencies for NLTK and GDAL in the end
Expand Down
1 change: 0 additions & 1 deletion backend/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ cryptography
flake8
boto3
django-storages
Pillow
django-rest-swagger
drf-yasg
djangorestframework-gis
Expand Down

0 comments on commit 0ee11ca

Please sign in to comment.