See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import { GraphQLModule } from '@nestjs/graphql'; | |
| import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo'; | |
| @Module({ | |
| imports: [ | |
| ConfigModule.forRoot({ | |
| expandVariables: true, | |
| isGlobal: true, | |
| envFilePath: [path.resolve('.env')], | |
| load: [], |
| apiVersion: backstage.io/v1alpha1 | |
| kind: Component | |
| metadata: | |
| name: www-artist | |
| description: Artist main website | |
| spec: | |
| type: website | |
| lifecycle: production | |
| owner: team-a |
| ProductID,ProductSKU,ProductName,ProductDescription,ProductPrice,ProductPriceCurrency,WasPrice,DiscountedPrice,ProductURL,PID,MID,ProductImageSmallURL,ProductImageMediumURL,ProductImageLargeURL,MPN,StockAvailability,Brand,Location,Colour,custom1,custom2,custom3,custom4,custom5,CategoryName,CategoryPathAsString | |
| "1998691914","5006059","Sapato Anatomic Gel 7316 Rustico Preto","Sapato Anatomic Gel 7316 Rustico Preto possui um acabamento único com sua costura manual. Confeccionado em couro rústico, para um maior conforto e maciez, além de proporcionar um visual rústico ao seu calçado. Vale destacar que o produto conta com um atacador em elástico, que facilita o calce.","309.00","BRL","0.00","309.00","http://clk.omgt6.com/?AID=898561&PID=51841&Type=12&r=https://www.anatomicgel.com.br/sapato-anatomic-gel-7316-rustico-preto-7316-u401-1/p%3Fidsku%3D5006060%26utm_source%3Doptimise%26utm_campaign%3Dafiliado_optimise%26utm_medium%3Dxml","51841","2303231","","https://anatomicgel.vteximg.com.br/arquivos/ids/214358_2","","7 |
| sudo apt update; | |
| sudo apt install python3-pip -y; | |
| sudo apt-get install python3-venv -y; | |
| python3 -m venv ./venv; | |
| source venv/bin/activate; | |
| pip3 install rethinkdb==2.3.0.post6; |
| version: "3" | |
| services: | |
| redis: | |
| image: redis | |
| command: redis-server --requirepass REDIS_PASSWORD | |
| ports: | |
| - "6379:6379" | |
| database: | |
| image: postgres:latest | |
| ports: |
| CREATE TABLE `crawler_ingram_all` ( | |
| `id` int(11) NOT NULL, | |
| `nome_produto` varchar(255) NOT NULL, | |
| `sku` varchar(50) NOT NULL, | |
| `pn` varchar(50) NOT NULL, | |
| `ean` varchar(50) NOT NULL, | |
| `estoque_sp` int(11) NOT NULL, | |
| `estoque_esi` int(11) NOT NULL, | |
| `estoque_esii` int(11) NOT NULL, |
| sudo docker run --network host -v $(pwd)/outputs:/opt/app/outputs -dit --rm -p 8000:8000 --name ingram ingrambot |