<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
<?php | |
// Get the PHP helper library from https://twilio.com/docs/libraries/php | |
require_once '/path/to/vendor/autoload.php'; // Loads the library | |
use Twilio\Rest\Client; | |
// Your Account Sid and Auth Token from twilio.com/user/account | |
$sid = "YOU_ACCOUNT_SID"; | |
$token = "YOUR_AUTH_TOKEN"; | |
$client = new Client($sid, $token); |
let table = base.getTable('People'); | |
let csvFile = await input.fileAsync( | |
'Pick a CSV file to upload', | |
{allowedFileTypes: ['.csv'], hasHeaderRow: true} | |
); | |
if(csvFile) { | |
let fileRows = csvFile.parsedContents; | |
output.text('Here are the first 10 records of your file'); |
echo '.env' >> .gitignore | |
git rm -r --cached .env | |
git add .gitignore | |
git commit -m 'untracking .env' | |
git push origin master |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.html$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.html [L] | |
</IfModule> | |
https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations |
$ ssh [email protected]
$ mkdir test
$ cd test