This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
feat: add detailed view and show logs #18
Open
Tchoupinax
wants to merge
17
commits into
Qovery:main
Choose a base branch
from
Tchoupinax:feature/details-view
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
2b4fa00
chore(frontend): add local dockerfile
Tchoupinax 34deeb8
feat: load dabatabase externally and use local build for the backend
Tchoupinax 02b6aa5
fix: clean typo
Tchoupinax 452d51e
feat: revert exit code 2
Tchoupinax 27689af
feat: docker-compose dev
Tchoupinax 8ca16df
feat: ux
Tchoupinax b41bdf4
feat: create details view of a run
Tchoupinax 88b5cd7
feat: ensure connection and add status
Tchoupinax 648a11f
chore: remove vite option
Tchoupinax 1aa1da8
chore: remove console.log
Tchoupinax 8fbeda1
feat: watch backend files
Tchoupinax c5c20b3
chore: self review
Tchoupinax 806f88a
chore: fix readme variable exemple
Tchoupinax a9d87d6
Merge branch 'feature/improve-local-DX' into feature/details-view
Tchoupinax 461afb6
feat: display logs
Tchoupinax 8997190
lint: apply fmt
Tchoupinax 21a42f8
docs: add linter
Tchoupinax File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 @@ | ||
docker_compose("docker-compose.yaml") |
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,4 +1,4 @@ | ||
FROM rust:1.77.2-bookworm as builder | ||
FROM rust:1.79-bookworm as builder | ||
|
||
WORKDIR /app | ||
|
||
|
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,10 @@ | ||
FROM rust:1.79-bookworm | ||
|
||
WORKDIR /app | ||
|
||
RUN apt update && \ | ||
apt install -y libssl-dev python3 nodejs && \ | ||
ln -s /usr/bin/python3 /usr/bin/python & \ | ||
cargo install cargo-watch | ||
|
||
COPY . . |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
console.log('Executing script node get weather Paris'); | ||
|
||
for(let i = 0; i < 20; i++) { | ||
console.error(`Log error ${i}`); | ||
} | ||
|
||
fetch('https://wttr.in/Paris?format=j1') | ||
.then(res => res.json()) | ||
.then(data => { | ||
console.log(`Currently it's ${data.current_condition.at(0).temp_C}Β°C in Paris.`); | ||
console.log('Finished!'); | ||
}); |
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 @@ | ||
|
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a POC with Node.js