Skip to content

Commit

Permalink
Merge pull request #96 from capstone-five-ai/develop
Browse files Browse the repository at this point in the history
v0.1.0
  • Loading branch information
jee-woo authored May 27, 2024
2 parents 1787b24 + 60109bb commit 402f00c
Show file tree
Hide file tree
Showing 197 changed files with 11,865 additions and 1,448 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
},
"plugins": ["@typescript-eslint", "react", "prettier", "react-hooks"],
"rules": {
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"react/react-in-jsx-scope": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }]
"react/jsx-props-no-spreading": "off",
"react/prop-types": "off",
"import/no-extraneous-dependencies": ["off"],
"@typescript-eslint/no-use-before-define": 0
}
}
32 changes: 32 additions & 0 deletions .github/workflows/synchronize-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Synchronize to forked repo
on:
push:
branches:
- main

jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest

steps:
- name: Checkout main
uses: actions/checkout@v4
with:
token: ${{ secrets.FORKED_REPO_TOKEN }}
fetch-depth: 0
ref: main

- name: Add remote-url
run: |
git remote add forked-repo https://AAminha:${{ secrets.FORKED_REPO_TOKEN }}@github.com/AAminha/Qtudy-FE
git config user.name AAminha
git config user.email [email protected]
- name: Push changes to forked-repo
run: |
git push -f forked-repo main
- name: Clean up
run: |
git remote remove forked-repo
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.env
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="./src/assets/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="./src/assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./src/assets/favicon-96x96.png" sizes="96x96" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Qtudy</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading

0 comments on commit 402f00c

Please sign in to comment.