Compare commits

...
Author SHA1 Message Date
Damodar LohaniandGitHub 0f0db0beaa Revert "React Native SDK" 2024-05-05 11:10:48 +05:45
Damodar LohaniandGitHub 61af107c82 Merge pull request #7776 from appwrite/feat-react-native-sdk
React Native SDK
2024-05-05 11:09:46 +05:45
Damodar Lohani 64d4ede05d mark beta 2024-05-01 08:55:45 +00:00
Damodar Lohani ef0b27840c update readme 2024-04-30 11:51:36 +00:00
Christy JacobandGitHub 2b18ac8953 Merge pull request #7610 from appwrite/fix-templates-copy-hidden-files
fix: templates copy hidden files
2024-04-29 15:37:30 +04:00
Luke B. SilverandGitHub 4b338d3740 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-04-29 11:58:43 +01:00
Damodar Lohani 665812c28b fix typo 2024-04-28 01:38:46 +00:00
Damodar Lohani 3451dd3f4b fix typo 2024-04-28 01:38:21 +00:00
Damodar Lohani b76f91218c fixes 2024-04-25 08:56:17 +00:00
Damodar Lohani 7e2c486ee1 Merge remote-tracking branch 'origin/1.5.x' into feat-react-native-sdk 2024-04-25 08:52:37 +00:00
Damodar Lohani 5976295051 sdk docs 2024-04-11 05:15:10 +00:00
Damodar Lohani f724974195 update version 2024-04-11 05:07:38 +00:00
Damodar Lohani 3f43e239c0 fixed 2024-04-11 05:06:37 +00:00
Damodar Lohani 019408ebcd composer update 2024-04-11 05:05:39 +00:00
Damodar Lohani 8fbd4e5269 Merge remote-tracking branch 'origin/main' into feat-react-native-sdk 2024-04-11 05:04:19 +00:00
7c7d09514a Update docs/sdks/react-native/GETTING_STARTED.md
Co-authored-by: Vincent (Wen Yu) Ge <vincent@appwrite.io>
2024-03-12 08:35:17 +05:45
cfd7534993 Update docs/sdks/react-native/GETTING_STARTED.md
Co-authored-by: Vincent (Wen Yu) Ge <vincent@appwrite.io>
2024-03-12 08:35:10 +05:45
e03102a112 Update docs/sdks/react-native/GETTING_STARTED.md
Co-authored-by: Vincent (Wen Yu) Ge <vincent@appwrite.io>
2024-03-12 08:34:54 +05:45
Damodar Lohani ef61879f5e fix import 2024-03-10 04:20:27 +00:00
Damodar Lohani f3927c3d20 fix linter 2024-03-10 03:57:54 +00:00
Damodar Lohani c11a1af99b react native SDK 2024-03-10 02:49:45 +00:00
Damodar Lohani 271db5ce69 react native getting started 2024-03-10 02:21:50 +00:00
Luke B. SilverandGitHub ab36448731 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-29 14:51:59 +00:00
Luke B. SilverandGitHub 827d8c02c1 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-28 13:58:34 +00:00
Luke B. SilverandGitHub ad20d400e5 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-26 16:40:54 +00:00
Luke B. SilverandGitHub 00c8774554 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-26 09:29:08 +00:00
Luke B. SilverandGitHub 95ef88c80e Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-25 17:01:34 +00:00
Luke B. SilverandGitHub 34d2dde51d Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-24 13:45:20 +00:00
Luke B. SilverandGitHub 5822f22109 Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-22 18:06:09 +00:00
Luke B. SilverandGitHub 0f09fd5ade Merge branch '1.5.x' into fix-templates-copy-hidden-files 2024-02-22 13:41:16 +00:00
loks0n 050f501186 fix: templates copy hidden files 2024-02-19 09:11:15 +00:00
+1 -1
View File
@@ -252,7 +252,7 @@ class Builds extends Action
Console::execute('mkdir -p ' . $tmpDirectory . '/' . $rootDirectory, '', $stdout, $stderr);
// Merge template into user repo
Console::execute('cp -rfn ' . $tmpTemplateDirectory . '/' . $templateRootDirectory . '/* ' . $tmpDirectory . '/' . $rootDirectory, '', $stdout, $stderr);
Console::execute('rsync -av --exclude \'.git\' ' . $tmpTemplateDirectory . '/' . $templateRootDirectory . '/ ' . $tmpDirectory . '/' . $rootDirectory, '', $stdout, $stderr);
// Commit and push
$exit = Console::execute('git config --global user.email "team@appwrite.io" && git config --global user.name "Appwrite" && cd ' . $tmpDirectory . ' && git add . && git commit -m "Create \'' . \escapeshellcmd($function->getAttribute('name', '')) . '\' function" && git push origin ' . \escapeshellcmd($branchName), '', $stdout, $stderr);