title: 'Homepage Free estimate' menu: 'Free Estimate' class: container grid-lg form: name: estimate action: '#' template: form-messages refresh_prevention: true fields:
This file contains hidden or 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
| CREATE TABLE address ( | |
| id UUID PRIMARY KEY, | |
| street_number TEXT, | |
| street_name TEXT, | |
| street_type TEXT, -- St, Ave, Blvd | |
| unit TEXT, | |
| city TEXT, | |
| state_province TEXT, |
This file contains hidden or 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
| static async Task ScanAndUpdateTTLAsync(IAmazonDynamoDB client, string tableName) | |
| { | |
| var scanRequest = new ScanRequest | |
| { | |
| TableName = tableName | |
| }; | |
| do | |
| { | |
| var scanResponse = await client.ScanAsync(scanRequest); |
This file contains hidden or 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
| # Check out https://hub.docker.com/_/node to select a new base image | |
| FROM node:10-slim | |
| # Set to a non-root built-in user `node` | |
| USER node | |
| # Create app directory (with user `node`) | |
| RUN mkdir -p /home/node/app | |
| WORKDIR /home/node/app |