#Using https
git remote add otheruser https://github.com/otheruser/yourrepo.git
# Or - Using SSH
git remote add otheruser [email protected]:otheruser/yourrepo.git
git fetch otheruser
| You are an expert in SQL and Tinybird. Follow these instructions when working with .datasource and .pipe files: | |
| <command_calling> | |
| You have commands at your disposal to develop a tinybird project: | |
| - tb build: to build the project locally and check it works. | |
| - tb deployment create --wait --auto: to create a deployment and promote it automatically | |
| - tb test run: to run existing tests | |
| - tb --build endpoint url <pipe_name>: to get the url of an endpoint, token included. | |
| - tb --build endpoint data <pipe_name>: to get the data of an endpoint. You can pass parameters to the endpoint like this: tb --build endpoint data <pipe_name> --param1 value1 --param2 value2 |
| Prefix | Description | Notes | |
|---|---|---|---|
| ac_ | Platform Client ID | Identifier for an auth code/client id. | |
| acct_ | Account ID | Identifier for an Account object. | |
| aliacc_ | Alipay Account ID | Identifier for an Alipay account. | |
| ba_ | Bank Account ID | Identifier for a Bank Account object. | |
| btok_ | Bank Token ID | Identifier for a Bank Token object. | |
| card_ | Card ID | Identifier for a Card object. | |
| cbtxn_ | Customer Balance Transaction ID | Identifier for a Customer Balance Transaction object. | |
| ch_ | Charge ID | Identifier for a Charge object. | |
| cn_ | Credit Note ID | Identifier for a Credit Note object. |
#Using https
git remote add otheruser https://github.com/otheruser/yourrepo.git
# Or - Using SSH
git remote add otheruser [email protected]:otheruser/yourrepo.git
git fetch otheruser
| FROM php:5.6-cli | |
| RUN apt-get update \ | |
| && apt-get install -y \ | |
| libfreetype6-dev \ | |
| && rm -rf /var/lib/apt/lists/* \ | |
| && docker-php-ext-install iconv \ | |
| && apt-get remove -y \ | |
| libfreetype6-dev \ | |
| && apt-get install -y \ |
| sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |