-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from hotungkhanh/develop
Merge from develop
- Loading branch information
Showing
61 changed files
with
2,899 additions
and
1,611 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 |
---|---|---|
|
@@ -4,20 +4,19 @@ on: | |
push: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js for Frontend | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.17.0' # Specify your Node.js version | ||
node-version: '20.17.0' | ||
|
||
- name: Install Frontend Dependencies | ||
run: | | ||
|
@@ -27,32 +26,41 @@ jobs: | |
- name: Build Frontend | ||
run: | | ||
cd frontend | ||
npm run build # Adjust if necessary | ||
npm run build | ||
# - name: Set up Java for Backend | ||
# uses: actions/setup-java@v2 | ||
# with: | ||
# java-version: '22.0.2' # Specify your Java version | ||
- name: Set up Java for Backend | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'oracle' | ||
java-version: '22.0.2' | ||
|
||
- name: Build Backend with Maven | ||
run: | | ||
cd backend | ||
mvn -B package --file pom.xml | ||
env: | ||
QUARKUS_DATASOURCE_USERNAME: ${{secrets.QUARKUS_DATASOURCE_USERNAME}} | ||
QUARKUS_DATASOURCE_PASSWORD: ${{secrets.QUARKUS_DATASOURCE_PASSWORD}} | ||
QUARKUS_DATASOURCE_JDBC_URL: ${{secrets.QUARKUS_DATASOURCE_JDBC_URL}} | ||
|
||
# - name: Build Backend | ||
# run: | | ||
# cd backend | ||
# mvn package # Use ./gradlew build for Gradle | ||
FRONTEND_USERNAME: ${{secrets.FRONTEND_USERNAME}} | ||
FRONTEND_PASSWORD: ${{secrets.FRONTEND_PASSWORD}} | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: akhileshns/[email protected] | ||
with: | ||
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
heroku_app_name: ${{secrets.HEROKU_FRONTEND_APP_NAME}} | ||
heroku_email: ${{secrets.HEROKU_EMAIL}} | ||
appdir: "frontend" | ||
|
||
# - uses: akhileshns/[email protected] | ||
# with: | ||
# heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
# heroku_app_name: ${{secrets.HEROKU_BACKEND_APP_NAME}} | ||
# heroku_email: ${{secrets.HEROKU_EMAIL}} | ||
# appdir: "backend" | ||
- uses: akhileshns/[email protected] | ||
with: | ||
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
heroku_app_name: ${{secrets.HEROKU_BACKEND_APP_NAME}} | ||
heroku_email: ${{secrets.HEROKU_EMAIL}} | ||
appdir: "backend" |
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ | |
*.sw? | ||
|
||
# env variables | ||
.env | ||
.env | ||
**/logs/ |
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,7 @@ | ||
{ | ||
"conventionalCommits.scopes": [ | ||
"database", | ||
"display ganttchart" | ||
], | ||
"java.configuration.updateBuildConfiguration": "interactive" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: java -jar target/quarkus-app/quarkus-run.jar |
This file was deleted.
Oops, something went wrong.
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.