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
> composer licenses --no-dev | |
Name: appwrite/server-ce | |
Version: dev-main | |
Licenses: BSD-3-Clause | |
Dependencies: | |
Name Version Licenses | |
adhocore/jwt 1.1.2 MIT | |
appwrite/appwrite 10.0.0 BSD-3-Clause |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"$schema": { | |
"type": "string" | |
}, | |
"items": { | |
"type": "array", | |
"items": [ |
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
import 'isomorphic-form-data'; | |
import { fetch } from 'cross-fetch'; | |
namespace Models { | |
/** | |
* Documents List | |
*/ | |
export type DocumentList<Document extends Models.Document> = { | |
/** | |
* Total number of documents documents that matched your query. |
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
# WARNING! | |
# This is a development version of THE Appwrite docker-compose.yml file. | |
# Avoid using this file in your production environment. | |
# We're exposing here sensitive ports and mounting code volumes for rapid development and debugging of the server stack. | |
version: '3' | |
x-env-defaults: &x-env-defaults |- | |
_APP_ENV | |
_APP_LOCALE |
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
import 'isomorphic-form-data'; | |
import { fetch } from 'cross-fetch'; | |
type Payload = { | |
[key: string]: any; | |
} | |
type Headers = { | |
[key: string]: string; | |
} |
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
_APP_ENV=production | |
_APP_LOCALE=en | |
_APP_CONSOLE_WHITELIST_ROOT=enabled | |
_APP_CONSOLE_WHITELIST_EMAILS= | |
_APP_CONSOLE_WHITELIST_IPS= | |
_APP_SYSTEM_EMAIL_NAME=Appwrite | |
[email protected] | |
[email protected] | |
_APP_SYSTEM_RESPONSE_FORMAT= | |
_APP_OPTIONS_ABUSE=disabled |
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
events { | |
worker_connections 1024; | |
} | |
http { | |
server { | |
listen 80; | |
listen 443; | |
# config for setting up and handling Appwrite SSL |
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
declare module "package-name" { | |
export class Client { | |
/** | |
* Set endpoint. | |
* | |
* @param {string} endpoint | |
* | |
* @return {this} | |
*/ | |
setEndpoint(endpoint: string): Client; |
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
# Love open-source, dev-tooling and passionate about code as much as we do? | |
# --- | |
# We're always looking for awesome hackers like you to join our 100% remote team! | |
# Check and see if you find any relevant position @ https://appwrite.io/company/careers | |
# (and let us know you found this message...) | |
# This script contains hidden JS code to allow better readability and syntax highlighting | |
# You can use "View source" of this page to see the full script. | |
# Appwrite CLI location |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package christmastree; | |
import java.util.Scanner; | |
/** |