-
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 #9 from moiri-gamboni/update
Add multilingual posts and update packages
- Loading branch information
Showing
4,261 changed files
with
50,857 additions
and
1,307,017 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -1,19 +1,25 @@ | ||
on: push | ||
on: | ||
push: | ||
branches: | ||
- main | ||
name: Deploy with FTP on push | ||
jobs: | ||
web-deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get latest code | ||
uses: actions/checkout@v3 | ||
|
||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- name: Sync files | ||
uses: SamKirkland/[email protected] | ||
with: | ||
server: ${{ secrets.ftp_server }} | ||
username: ${{ secrets.ftp_username }} | ||
password: ${{ secrets.ftp_password }} | ||
local-dir: './server/app/public/' | ||
local-dir: './server/app/public/wp-content/' | ||
server-dir: ${{ secrets.server_dir }} | ||
log-level: 'standard' | ||
exclude: | | ||
/uploads/ | ||
index.php |
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 @@ | ||
[submodule "server/app/public/wp-content/themes/blank"] | ||
path = server/app/public/wp-content/themes/blank | ||
url = [email protected]:moiri-gamboni/wp-blank-theme.git | ||
[submodule "server/app/public/wp-content/plugins/wp-graphql-polylang"] | ||
path = server/app/public/wp-content/plugins/wp-graphql-polylang | ||
url = https://github.com/valu-digital/wp-graphql-polylang.git | ||
branch = stable |
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,30 @@ | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended-type-checked', | ||
'plugin:@typescript-eslint/stylistic-type-checked', | ||
'next/core-web-vitals', | ||
'prettier', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: true, | ||
tsconfigRootDir: '__dirname', | ||
}, | ||
plugins: ['@typescript-eslint'], | ||
root: true, | ||
overrides: [ | ||
{ | ||
files: ['*.js', '*.cjs'], | ||
extends: ['plugin:@typescript-eslint/disable-type-checked'], | ||
}, | ||
], | ||
rules: { | ||
'@typescript-eslint/prefer-nullish-coalescing': 'off', | ||
}, | ||
settings: { | ||
next: { | ||
rootDir: 'client/', | ||
}, | ||
}, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,4 @@ | |
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
cd client | ||
yarn build | ||
yarn lint-staged |
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,5 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
cd client | ||
yarn build |
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 +1 @@ | ||
18.16.0 | ||
20.11.0 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.