main page

This commit is contained in:
2025-12-17 17:55:13 +01:00
commit 7fb446c53a
8943 changed files with 1209030 additions and 0 deletions

32
node_modules/appwrite/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,32 @@
language: node_js
node_js:
- "14.16"
jobs:
include:
- stage: NPM RC Release
if: tag =~ /-(rc|RC)/
node_js: "14.16"
script:
- npm install
- npm run build
- echo "Deploying RC to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
tag: next
- stage: NPM Release
if: not tag =~ /-(rc|RC)/
node_js: "14.16"
script:
- npm install
- npm run build
- echo "Deploying to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
skip_cleanup: true
on:
tags: true