shimon
7e6378b23b
dry run
2023-10-26 20:56:32 +03:00
shimon
0f43aa6872
dry run
2023-10-26 20:53:36 +03:00
shimon
831122679f
creating script
2023-10-26 17:45:23 +03:00
Christy Jacob
be26e4b729
chore: remove resque library and update health check endpoints
2023-10-18 19:44:06 +00:00
Christy Jacob
685a953705
Merge branch 'refactor-workers-sn' of github.com:appwrite/appwrite into remove-obsolete-tasks
2023-10-17 23:30:44 +04:00
Christy Jacob
7806cf1b55
chore: cleanup obsolete CLI tasks
2023-10-17 23:29:25 +04:00
shimon
1036cb406d
some fixes
2023-10-17 21:32:38 +03:00
shimon
e8dbd043ec
addressing some comments
2023-10-17 07:02:54 +03:00
shimon
9a6d88a819
addressing some comments
2023-10-17 06:44:36 +03:00
shimon
2fcda9fc11
Merge branch 'cl-1.4.x' of github.com:appwrite/appwrite into refactor-workers-sn
2023-10-16 17:03:43 +03:00
shimon
94178f8eaf
rollback to Usage
2023-10-15 20:41:09 +03:00
Christy Jacob
d8714ec3fa
fix: rename domains collection to rules in hamster script
2023-10-13 12:54:10 +04:00
Christy Jacob
b3d8998735
chore: update hamster script
2023-10-13 12:29:03 +04:00
shimon
1c8b38502a
sync with main
2023-10-11 17:07:06 +03:00
shimon
893b1d0ba7
Merge branch 'main' of github.com:appwrite/appwrite into refactor-workers
...
Conflicts:
.gitmodules
app/controllers/api/functions.php
app/controllers/api/health.php
app/init.php
app/views/install/compose.phtml
composer.lock
src/Appwrite/Migration/Migration.php
src/Appwrite/Platform/Workers/Builds.php
src/Appwrite/Platform/Workers/Deletes.php
src/Appwrite/Platform/Workers/Functions.php
src/Executor/Executor.php
2023-10-11 12:08:13 +03:00
shimon
3b00e396d5
sync with main
2023-10-03 15:15:13 +03:00
shimon
dcf0107a79
sync with master
2023-09-27 20:10:21 +03:00
shimon
c4bd6e008e
Merge branch 'master' of github.com:appwrite/appwrite into refactor-workers
...
Conflicts:
.env
app/cli.php
app/config/collections.php
app/console
app/controllers/api/account.php
app/controllers/api/databases.php
app/controllers/api/functions.php
app/controllers/api/projects.php
app/controllers/api/storage.php
app/controllers/api/teams.php
app/controllers/api/users.php
app/controllers/general.php
app/controllers/shared/api.php
app/init.php
app/worker.php
app/workers/audits.php
app/workers/builds.php
app/workers/certificates.php
app/workers/databases.php
app/workers/deletes.php
app/workers/functions.php
app/workers/mails.php
bin/worker-usage
composer.json
composer.lock
docker-compose.yml
src/Appwrite/Event/Delete.php
src/Appwrite/Event/Mail.php
src/Appwrite/Platform/Tasks/Maintenance.php
2023-09-27 18:51:17 +03:00
Christy Jacob
79d7bd8379
chore: linter
2023-09-26 00:10:17 +04:00
Christy Jacob
39dc153a22
chore: remove comments
2023-09-26 00:05:01 +04:00
Christy Jacob
d4debddc46
chore: update hamster script
2023-09-26 00:01:42 +04:00
Christy Jacob
d1d523e1dc
chore: update hamster script
2023-09-26 00:01:34 +04:00
Matej Bačo
8926d24a0d
One more env var rename
2023-09-19 09:35:32 +02:00
Matej Bačo
d87dbad768
PR review changes
2023-09-19 09:31:57 +02:00
Matej Bačo
6a7950aa34
Add function domains force https
2023-09-18 12:27:47 +02:00
Jake Barnby
9ba609c46e
Merge pull request #6238 from appwrite/1.4.x
...
1.4.x
2023-09-15 18:49:55 -04:00
Christy Jacob
bede0d43d4
fix: add try catch block in the schedules task
2023-09-15 05:24:00 +00:00
Christy Jacob
50405f838e
Merge branch '1.4.x' of https://github.com/appwrite/appwrite into chore-cleanup-dockerfile
2023-09-14 18:07:53 +00:00
Jake Barnby
d4f6b99ee2
Fix mock enum endpoint
2023-09-07 19:25:42 -04:00
Christy Jacob
53b1c87c6e
Merge pull request #6141 from appwrite/fix-overwrite-executor-variable
...
Fix _APP_EXECUTOR_HOST for upgrades
2023-09-05 19:35:31 -04:00
Steven Nguyen
4c90b6bb1c
Add required params for scheduled functions
2023-09-04 17:02:17 -07:00
Steven Nguyen
3c7c44adda
Fix _APP_EXECUTOR_HOST for upgrades
...
As of 1.4.0, the hostname of the executor should be executor rather than
appwrite-executor. The problem is our install command always uses the
existing installation's variable values as the default for the upgrade.
This means the _APP_EXECUTOR_HOST will retain it's old value.
This PR Adds an overwrite key to variables.php to allow overwriting the
variable value regardless of whatever was in the previous installation.
2023-09-04 11:06:43 -07:00
Christy Jacob
31a7cca906
chore: add missing env variable
2023-09-01 17:08:51 -04:00
Steven Nguyen
dcc676a0c9
Make install confirmation case insensitive
...
When a previous installation is found during installation/upgrade, the
user is prompted to confirm whether they want to overwrite it. We
originally only accepted 'Y', but this PR changes it to accept 'y' as
well to reduce friction.
2023-08-31 12:25:42 -07:00
Steven Nguyen
917f2f1d74
Update installation confirmation text
...
Let the user know a backup will be created.
2023-08-30 12:32:10 -07:00
Steven Nguyen
2f2edd41d5
Update install.php not specify docker-compose.yml file
...
By not specifying a docker-compose.yml file, docker compose
automatically uses the docker-compose.yml file in the project directory
and a docker-compose.override.yml file if one is present.
2023-08-30 10:17:37 -07:00
Steven Nguyen
7d56c6f37e
Prompt developer to confirm installing over existing install
2023-08-30 09:55:27 -07:00
Steven Nguyen
75f7459c40
Create a dedicated upgrade task
...
Before, we used the same command for both installation and upgrades.
This lead to problems because developers would try to upgrade in the
wrong folder and end up creating a new installation.
This new upgrade command validates the existence of an existing
installation before proceeding with the upgrade to ensure no new
installation is created when upgrading.
2023-08-30 09:55:18 -07:00
Steven Nguyen
48f0ff86ba
Make the install path a class property
...
This makes it so the property can be used by subclasses.
2023-08-30 09:50:47 -07:00
Torsten Dittmann
48c5a09b4f
fix: string interpolation
2023-08-30 11:21:28 +02:00
Jake Barnby
ece93a14e5
Fix install task
2023-08-28 18:09:37 -04:00
Matej Bačo
8802e318d5
Fix pools resource
2023-08-23 13:52:17 +02:00
Steven Nguyen
f3fbb2fb56
Fix Migration task after it was converted to a Platform task
2023-08-21 15:53:30 -07:00
shimon
e86286e7e3
Merge branch 'feat-git-integration' of github.com:appwrite/appwrite into feat-usage-rollback
...
Conflicts:
composer.lock
2023-08-20 18:07:57 +03:00
shimon
8147f3ee7d
rolling back usage flow
2023-08-20 15:29:43 +03:00
Matej Bačo
dedacecb52
Enable coroutines for VCS, upgrade version to 1.4
2023-08-20 10:46:44 +02:00
Matej Bačo
906f86fbb8
Merge branch 'cloud-1.4.x' into feat-git-integration
2023-08-06 09:31:32 +02:00
Steven Nguyen
d960f85da6
Merge branch '1.4.x' into cloud-1.4.x
2023-08-04 18:07:33 -07:00
Steven Nguyen
aa3c2faed9
Merge tag '1.3.8' into cloud-1.3.x-2
2023-08-04 13:55:07 -07:00
Matej Bačo
ac2ca267d7
Address more PR reviews
2023-07-31 08:47:47 +02:00