Code Monkey home page Code Monkey logo

demos-for-functions's Introduction

Our Appwrite Init event has concluded. You can check out all the new and upcoming features on our Init website ๐Ÿš€


Appwrite Logo

Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for developer experience in the coding languages you love.

We're Hiring Hacktoberfest Discord Build Status X Account

English | ็ฎ€ไฝ“ไธญๆ–‡

Announcing Appwrite Cloud Public Beta! Sign up today!

Appwrite is an end-to-end backend server for Web, Mobile, Native, or Backend apps packaged as a set of Docker microservices. Appwrite abstracts the complexity and repetitiveness required to build a modern backend API from scratch and allows you to build secure apps faster.

Using Appwrite, you can easily integrate your app with user authentication and multiple sign-in methods, a database for storing and querying users and team data, storage and file management, image manipulation, Cloud Functions, and more services.


Appwrite - 100% open source alternative for Firebase | Product Hunt

Appwrite

Find out more at: https://appwrite.io

Table of Contents:

Installation

Appwrite is designed to run in a containerized environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool, such as Kubernetes, Docker Swarm, or Rancher.

The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command, make sure you have Docker installed on your machine:

Unix

docker run -it --rm \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:1.5.4

Windows

CMD

docker run -it --rm ^
    --volume //var/run/docker.sock:/var/run/docker.sock ^
    --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
    --entrypoint="install" ^
    appwrite/appwrite:1.5.4

PowerShell

docker run -it --rm `
    --volume /var/run/docker.sock:/var/run/docker.sock `
    --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
    --entrypoint="install" `
    appwrite/appwrite:1.5.4

Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.

For advanced production and custom installation, check out our Docker environment variables docs. You can also use our public docker-compose.yml and .env files to manually set up an environment.

Upgrade from an Older Version

If you are upgrading your Appwrite server from an older version, you should use the Appwrite migration tool once your setup is completed. For more information regarding this, check out the Installation Docs.

One-Click Setups

In addition to running Appwrite locally, you can also launch Appwrite using a pre-configured setup. This allows you to get up and running quickly with Appwrite without installing Docker on your local machine.

Choose from one of the providers below:

DigitalOcean Logo
DigitalOcean
Gitpod Logo
Gitpod
Akamai Logo
Akamai Compute

Getting Started

Getting started with Appwrite is as easy as creating a new project, choosing your platform, and integrating its SDK into your code. You can easily get started with your platform of choice by reading one of our Getting Started tutorials.

Platform Technology
Web app Quick start for Web
Quick start for Next.js
Quick start for React
Quick start for Vue.js
Quick start for Nuxt
Quick start for SvelteKit
Quick start for Refine
Quick start for Angular
Mobile and Native Quick start for React Native
Quick start for Flutter
Quick start for Apple
Quick start for Android
Server Quick start for Node.js
Quick start for Python
Quick start for .NET
Quick start for Dart
Quick start for Ruby
Quick start for Deno
Quick start for PHP
Quick start for Kotlin
Quick start for Swift

Products

  • Account - Manage current user authentication and account. Track and manage the user sessions, devices, sign-in methods, and security logs.
  • Users - Manage and list all project users when building backend integrations with Server SDKs.
  • Teams - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
  • Databases - Manage databases, collections, and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters.
  • Storage - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to perfectly fit your app. All files are scanned by ClamAV and stored in a secure and encrypted way.
  • Functions - Customize your Appwrite project by executing your custom code in a secure, isolated environment. You can trigger your code on any Appwrite system event either manually or using a CRON schedule.
  • Messaging - Communicate with your users through push notifications, emails, and SMS text messages using Appwrite Messaging.
  • Realtime - Listen to real-time events for any of your Appwrite services including users, storage, functions, databases, and more.
  • Locale - Track your user's location and manage your app locale-based data.
  • Avatars - Manage your users' avatars, countries' flags, browser icons, and credit card symbols. Generate QR codes from links or plaintext strings.

For the complete API documentation, visit https://appwrite.io/docs. For more tutorials, news and announcements check out our blog and Discord Server.

SDKs

Below is a list of currently supported platforms and languages. If you would like to help us add support to your platform of choice, you can go over to our SDK Generator project and view our contribution guide.

Client

  • โœ… ย  Web (Maintained by the Appwrite Team)
  • โœ… ย  Flutter (Maintained by the Appwrite Team)
  • โœ… ย  Apple (Maintained by the Appwrite Team)
  • โœ… ย  Android (Maintained by the Appwrite Team)
  • โœ… ย  React Native - Beta (Maintained by the Appwrite Team)

Server

  • โœ… ย  NodeJS (Maintained by the Appwrite Team)
  • โœ… ย  PHP (Maintained by the Appwrite Team)
  • โœ… ย  Dart (Maintained by the Appwrite Team)
  • โœ… ย  Deno (Maintained by the Appwrite Team)
  • โœ… ย  Ruby (Maintained by the Appwrite Team)
  • โœ… ย  Python (Maintained by the Appwrite Team)
  • โœ… ย  Kotlin (Maintained by the Appwrite Team)
  • โœ… ย  Swift (Maintained by the Appwrite Team)
  • โœ… ย  .NET - Beta (Maintained by the Appwrite Team)

Community

Looking for more SDKs? - Help us by contributing a pull request to our SDK Generator!

Architecture

Appwrite Architecture

Appwrite uses a microservices architecture that was designed for easy scaling and delegation of responsibilities. In addition, Appwrite supports multiple APIs, such as REST, WebSocket, and GraphQL to allow you to interact with your resources by leveraging your existing knowledge and protocols of choice.

The Appwrite API layer was designed to be extremely fast by leveraging in-memory caching and delegating any heavy-lifting tasks to the Appwrite background workers. The background workers also allow you to precisely control your compute capacity and costs using a message queue to handle the load. You can learn more about our architecture in the contribution guide.

Contributing

All code contributions, including those of people having commit access, must go through a pull request and be approved by a core developer before being merged. This is to ensure a proper review of all the code.

We truly โค๏ธ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Security

For security issues, kindly email us at [email protected] instead of posting a public issue on GitHub.

Follow Us

Join our growing community around the world! Check out our official Blog. Follow us on X, LinkedIn, Dev Community or join our live Discord server for more help, ideas, and discussions.

License

This repository is available under the BSD 3-Clause License.

demos-for-functions's People

Contributors

2002bishwajeet avatar achintya-7 avatar akashgp09 avatar avats-dev avatar bencehornyak avatar christyjacob4 avatar codingsamurai-10 avatar daniel-shuy avatar djdeveloperr avatar donnc avatar eldadfux avatar foxy-eyed avatar gat786 avatar geisterfurz007 avatar glide7 avatar gunjandhanuka avatar hack3r-0m avatar hardiksachan avatar kinkusuma avatar lohanidamodar avatar meldiron avatar nix3r avatar pastajello avatar peterchu999 avatar pineappleionic avatar shaka-n avatar shylajhaa avatar torstendittmann avatar yarinayash1 avatar zeroplusone avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

demos-for-functions's Issues

[Help wanted] Translate 'file-backup' function from Python to Ruby ๐Ÿ’Ž

Translate 'file-backup' function from Python to Ruby

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to Ruby โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Ruby you can use this template as your starting point. ๐Ÿฅฐ

[Help wanted] Translate 'object-detection' function from Python to Ruby ๐Ÿ’Ž

Translate 'object-detection' function from Python to Ruby ๐ŸŸฅ

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to Ruby ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Ruby you can use this template as your starting point. ๐Ÿ’•

[Help wanted] Translate 'object-detection' function from Python to PHP ๐Ÿ˜

Translate 'object-detection' function from Python to PHP ๐Ÿ˜

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to PHP โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For PHP you can use this template as your starting point. ๐ŸคŸ๐Ÿฟ

[Help wanted] Translate 'storage-cleaner' function from .NET to Ruby

Translate 'storage-cleaner' function from .NET to Ruby

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to Ruby ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Ruby you can use this template as your starting point. ๐Ÿ’•

๐Ÿ“š Documentation: more info about command

๐Ÿ’ญ Description

Hi,

I've built a function using PHP. What should I put in command?

Also, in my PHP code, can I write a text file anywhere on my server or am I restricted to a directory, if so, which one?

Thanks,

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'object-detection' function from Python to Dart ๐Ÿน

Translate 'object-detection' function from Python to Dart ๐Ÿน

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to Dart ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Dart you can use this template as your starting point. ๐Ÿ’•

[Help wanted] Translate 'storage-cleaner' function from .NET to NodeJS

Translate 'storage-cleaner' function from .NET to NodeJS ๐Ÿฑโ€๐Ÿ‰

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to NodeJS ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For NodeJS you can use this template as your starting point. ๐Ÿ’•

๐Ÿ› Bug Report: Bug template doesnt have newer Appwrite versions in Appwrite version dropdown.

๐Ÿ‘Ÿ Reproduction steps

Hello,

just enter a Bug issue creation and click on Appwrite version dropdown.

๐Ÿ‘ Expected behavior

Since Appwrite is now in 0.14.x it should be possible to add it ?_?

๐Ÿ‘Ž Actual Behavior

image

๐ŸŽฒ Appwrite version

Different version (specify in environment)

๐Ÿ’ป Operating system

Windows

๐Ÿงฑ Your Environment

No response

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'hello-world' function from Python to .NET ๐ŸŒ

Translate 'hello-world' function from Python to .NET

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'hello-world' from Python to .NETโ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For .NET you can use this template as your starting point. ๐ŸคŸ๐Ÿฟ

Demos for Functions Progress not updated

The progress for the Demos for Functions in different languages are not updated.
For example- It says there is no helloworld function for dotnet, but if you check in the dotnet directory, the function exists.
Similarly, the function for object-detection does not exist in php, but it is checked on the progress.
This might create confusion among new contributors.

[Help wanted] Translate 'storage-cleaner' function from .NET to Deno ๐Ÿฑโ€๐Ÿ‰

Translate 'storage-cleaner' function from .NET to Deno ๐Ÿฑโ€๐Ÿ‰

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to Deno๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Deno you can use this template as your starting point. ๐Ÿ’•

[Help wanted] Translate 'welcome-email' function from NodeJS to Ruby

Translate 'welcome-email' function from NodeJS to Ruby ๐Ÿ’Ž

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'welcome-email' from NodeJS to Ruby โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ“—

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Ruby you can use this template as your starting point. โค

Link to the contributing guide is broken

There's no CONTRIBUTING.md file for this repo, so if someone from the team can add it or allow me to add one, it'll be really helpful.
Also, links to helpful resources can be provided in the README.md file which can help the first-timers.

๐Ÿ“š Documentation:

๐Ÿ’ญ Description

Hi,

I wrote a PHP function that writes a text file on my ubuntu server.

Can I write a text file anywhere on my server or am I restricted to a directory, if so, which one?

Thanks

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'welcome-email' function from NodeJS to Deno ๐Ÿฑโ€๐Ÿ‰

๐Ÿ“šTranslate 'welcome-email' function from NodeJS to Deno

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions. โ˜
Help us translate the cloud function 'welcome-email' from NodeJS to Deno ๐Ÿฑโ€๐Ÿ‰

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here.โ€จ ๐Ÿ“ˆ

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Deno you can use this template as your starting point. ๐Ÿฑโ€๐Ÿ‰

[Help wanted] Translate 'file-backup' function from Python to Dart ๐Ÿน

Translate 'file-backup' function from Python to Dart ๐Ÿน

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to Dart โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Dart you can use this template as your starting point. ๐Ÿฅฐ

[Help wanted] Translate 'file-backup' function from Python to Deno ๐Ÿฑโ€๐Ÿ‰

Translate 'file-backup' function from Python to Deno ๐Ÿฑโ€๐Ÿ‰

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to Deno โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ“—

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Deno you can use this template as your starting point. โค

๐Ÿ“š Documentation: Using variables

๐Ÿ’ญ Description

Hi,

I want to create a PHP function that is triggered when a document is added to a collection.

I know how to create pre-defined variables and how to get $_ENV variables in PHP. But how do I pass the document ID of the newly added document to the PHP function?

Thanks,

Nicolas

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'welcome-email' function from NodeJS to Python ๐Ÿ

Translate 'welcome-email' function from NodeJS to Python ๐Ÿ

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'welcome-email' from NodeJS to Python โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ“—

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Python you can use this template as your starting point. ๐Ÿ

[Help wanted] Translate 'file-backup' function from Python to .NET

Translate 'file-backup' function from Python to .NET

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to .NETโ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For .NET you can use this template as your starting point. ๐Ÿฅฐ

[Help wanted] Translate 'storage-cleaner' function from .NET to Python ๐Ÿ

Translate 'storage-cleaner' function from .NET to Python๐Ÿฑโ€๐Ÿ‰

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to Python ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Python you can use this template as your starting point. ๐Ÿ’•

Contribution guide link not working.

In the readme, there is a click button for going to contribution guideline, but the file is not there, it is missing. add the contributor's guidelines file. I want to contribute to this repo under hacktoberfest, so is there any issues that could be created in this repo also so that I can also contribute.

[Help wanted] Translate 'object-detection' function from Python to .NET ๐ŸŒ

Translate 'object-detection' function from Python to .NET๐ŸŒ

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to .NET๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For .NET you can use this template as your starting point. ๐Ÿ’•

[Help wanted] Translate 'storage-cleaner' function from .NET to PHP

Translate 'storage-cleaner' function from .NET to PHP

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to PHP ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For PHP you can use this template as your starting point. ๐Ÿ’•

๐Ÿ› Bug Report: Demo Function (add updated at) running in loop

๐Ÿ‘Ÿ Reproduction steps

appwrite/appwrite#3025 (comment)

add-updated-at

Runs in loop Demo Function when tries to update the document [document.update]

๐Ÿ‘ Expected behavior

๐Ÿ‘Ž Actual Behavior

running in loop

๐ŸŽฒ Appwrite version

Version 0.10.x

๐Ÿ’ป Operating system

Windows

๐Ÿงฑ Your Environment

Localhost

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿ› Bug Report: [dart] new functions use different entry point then current demos.

๐Ÿ‘Ÿ Reproduction steps

Hello,

current demo functions in Dart are having
main(List<String> args) async
as starting point. But new functions created by the CLI are all having
Future<void> start(final req, final res) async

๐Ÿ‘ Expected behavior

Demos should be rewritten to comform to new function API.

๐Ÿ‘Ž Actual Behavior

Dart demos are all having wrong/outdated entry point.

๐ŸŽฒ Appwrite version

Different version (specify in environment)

๐Ÿ’ป Operating system

Linux

๐Ÿงฑ Your Environment

Appwrite 0.14.2

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'object-detection' function from Python to Deno ๐Ÿฑโ€๐Ÿ‰

Translate 'object-detection' function from Python to Deno ๐Ÿฑโ€๐Ÿ‰

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to Deno โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Deno you can use this template as your starting point.

[Help wanted] Translate 'file-backup' function from Python to NodeJS ๐Ÿ‘ฉโ€๐Ÿ’ป

Translate 'file-backup' function from Python to NodeJS ๐Ÿ‘ฉโ€๐Ÿ’ป

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to NodeJS โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For NodeJS you can use this template as your starting point.

Add GitHub Issue Forms and PR template

Title

GitHub has recently rolled out a public beta for their issue forms feature. This would allow you to create interactive issue templates and validate them ๐Ÿคฏ.

Description

As we can see this repository currently uses neither issue template nor any PR template. Your task is to create GitHub issue forms and PR template for this repository. We can use standard templates form appwrite/appwrite as a reference for this PR.

Console

๐Ÿ’ญ Description

Hi,

How do you output text in the Logs on purpose ?

Thanks

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

[Help wanted] Translate 'object-detection' function from Python to NodeJS โš™

Translate 'object-detection' function from Python to NodeJS โš™

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'object-detection' from Python to NodeJS โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For NodeJS you can use this template as your starting point. ๐ŸคŸ๐Ÿฟ

[Help wanted] Translate 'storage-cleaner' function from .NET to Dart

Translate 'storage-cleaner' function from .NET to Ruby

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'storage-cleaner' from .NET to Ruby ๐Ÿ’ป

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For Dart you can use this template as your starting point. ๐Ÿ’•

[Suggestions] Suggest new Idea for Cloud Function Demos ๐Ÿ’ก

Suggest new Idea for Cloud Function Demos ๐Ÿ’ก

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.

We would love to receive your suggestions for other cloud function demos!
Please comment down below if you have such an idea โ™ฅ

Before starting any work โš™

  • Please wait for Appwrite team feedback ๐Ÿ’™
  • Let us know if you wish to start a new issue and be assigned to work on a function demo
  • A separate issue will be opened once an idea is approved
  • What language you want to help with book ๐Ÿงพ

[Help wanted] Translate 'welcome-email' function from NodeJS to PHP ๐Ÿ˜

Translate 'welcome-email' function from NodeJS to PHP ๐ŸŽฏ

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions. โ˜
Help us translate the cloud function 'welcome-email' from NodeJS to PHP

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here.โ€จ ๐Ÿ“ˆ

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For PHP you can use this template as your starting point.

[Help wanted] Translate 'file-backup' function from Python to PHP ๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป

Translate 'file-backup' function from Python to PHP ๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป

We use Appwrite Cloud Functions demos as a good way to show how Cloud Functions can be used with Appwrite, and also as a good starting point for developers wanting to write their new functions.
Help us translate the cloud function 'file-backup' from Python to PHP โ˜

Requirements ๐Ÿ”Ž

  • For testing your code, you need a running Appwrite instance with cloud functions enabled. Youโ€™ll need to setup Appwrite from source using the 0.7.x branch and Docker. ๐Ÿณ
    Clone the appwrite/appwrite 0.7.x branch. More instruction about how to start your Appwrite server from source are available here. ๐Ÿ’ป

  • โ€จIf this is your first PR for Appwrite, it is best to read some of our contributions guidelines.โ€จ โ™ฅ

  • โ€จFor each target language we provide with a template for starting a new function. For PHP you can use this template as your starting point. ๐Ÿฅฐ

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.