mirror of
https://github.com/appwrite/appwrite
synced 2026-05-05 22:38:37 +00:00
Merge pull request #10350 from appwrite/fix-event-template-config
Fix event template configuration issues
This commit is contained in:
commit
5f59c4de24
1 changed files with 3 additions and 3 deletions
|
|
@ -1006,7 +1006,7 @@ return [
|
|||
getFramework('NEXTJS', [
|
||||
'providerRootDirectory' => './',
|
||||
'installCommand' => 'pnpm install',
|
||||
'buildCommand' => 'npm run build',
|
||||
'buildCommand' => 'pnpm build',
|
||||
]),
|
||||
],
|
||||
'vcsProvider' => 'github',
|
||||
|
|
@ -1015,7 +1015,7 @@ return [
|
|||
'providerVersion' => '0.1.*',
|
||||
'variables' => [
|
||||
[
|
||||
'name' => 'NEXT_PUBLIC_APPWRITE_FUNCTION_PROJECT_ID',
|
||||
'name' => 'NEXT_PUBLIC_APPWRITE_FUNCTION_API_ENDPOINT',
|
||||
'description' => 'Endpoint of Appwrite server',
|
||||
'value' => '{apiEndpoint}',
|
||||
'placeholder' => '{apiEndpoint}',
|
||||
|
|
@ -1023,7 +1023,7 @@ return [
|
|||
'type' => 'text'
|
||||
],
|
||||
[
|
||||
'name' => 'NEXT_PUBLIC_APPWRITE_FUNCTION_API_ENDPOINT',
|
||||
'name' => 'NEXT_PUBLIC_APPWRITE_FUNCTION_PROJECT_ID',
|
||||
'description' => 'Your Appwrite project ID',
|
||||
'value' => '{projectId}',
|
||||
'placeholder' => '{projectId}',
|
||||
|
|
|
|||
Loading…
Reference in a new issue