-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into logging_for_ddf
- Loading branch information
Showing
17 changed files
with
390 additions
and
210 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: CI Pipeline | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- development | ||
pull_request: | ||
branches: | ||
- main | ||
- development | ||
|
||
jobs: | ||
build: | ||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install CLI dependencies | ||
run: | | ||
npm install rollup --save-dev | ||
npm ci | ||
working-directory: client | ||
|
||
- name: Build client | ||
run: | | ||
npm run build | ||
working-directory: client | ||
|
||
- name: Setup server | ||
run: | | ||
cd ./ | ||
pip install -r requirements.txt | ||
cd server/ | ||
flask db init | ||
flask db migrate | ||
flask db upgrade | ||
- name: Start server | ||
run: | | ||
nohup flask run & | ||
working-directory: server | ||
|
||
- name: Wait for server to start | ||
run: | | ||
sleep 5 | ||
- name: Verify server is running | ||
run: | | ||
curl -f http://localhost: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
FROM python:3.9-slim | ||
|
||
ARG IP | ||
ARG PORT | ||
|
||
# download and install dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
npm \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR / | ||
|
||
COPY . . | ||
|
||
RUN sed -i -e 's/\r$//' install.sh | ||
|
||
RUN chmod +x ./install.sh | ||
|
||
RUN ./install.sh | ||
|
||
RUN sed -i -e 's/\r$//' run_prod.sh | ||
|
||
RUN chmod +x ./run_prod.sh | ||
|
||
WORKDIR /server | ||
|
||
RUN echo echo "Port: $PORT" | ||
|
||
EXPOSE $PORT | ||
|
||
WORKDIR / | ||
|
||
CMD ["sh", "./run_prod.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
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.