All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Izara Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:42, 19 October 2023 Praew talk contribs created page SQS DSQ Hdr (Created page with "= Example Sqs|Dsq Handler = step for create lambdaFunction and Sqs|Dsq handler == Lambda == * add lambda, copy LambdaFunction.js and change name, ex: ProcessProduct_Main.js <syntaxhighlight lang="JavaScript"> 'use strict'; const izaraSharedLib = require('@izara_project/izara-shared'); const dynamodbSharedLib = izaraSharedLib.dynamodbSharedLib; const hash = require('object-hash'); //* require more module that you use /** * description of function. * @param {string}...")
- 04:25, 19 October 2023 Praew talk contribs created page Test (Created page with "= Test = == initialSetup lambda == set one time after deploy service to AWS * go to AWS server => Lambda * choose InitialSetup lambda * Test => Test event => Event JSON <syntaxhighlight lang="JSON"> { } </syntaxhighlight> see output in CloudWatch == Test: API Handler == * go to AWS server => Lambda * choose your lambda ex: CreateProduct_HdrApi * Test => Test event => Event JSON <syntaxhighlight lang="JSON"> { "type": "Clothes", "name": "Dream" } </syntaxhighli...")
- 01:27, 19 October 2023 Praew talk contribs created page Initial setup (Created page with "== set initail setup == * set dynamodb table <syntaxhighlight lang="JavaScript"> module.exports.tableConfigs = { Config: { // serviceName: serviceNameRbac, //tableName: 'UserRoles', // can overwrite tableName here }, ProductRecord: { // serviceName: initialSetupConfig.serviceNameProductManager, }, RolePermissions: { serviceName: initialSetupConfig.serviceNameRbac, }, //... } </syntaxhighlight> * set subscription topic <syntaxhighlight lan...")
- 08:34, 17 October 2023 Praew talk contribs created page API Hdr (Created page with "= Example API Handler = step for create lambdaFunction and Api handler === in app/src === * add lambda, copy LambdaFunction.js and change name. ex. CreateProduct_Main.js <syntaxhighlight lang="JavaScript"> Example: 'use strict'; const izaraSharedLib = require('@izara_project/izara-shared'); const dynamodbSharedLib = izaraSharedLib.dynamodbSharedLib; const hash = require('object-hash'); //* require more module that you use /** * description of function. * @para...")
- 08:21, 17 October 2023 Praew talk contribs created page DynamoDb (Created page with "= Example DynamoDB table = example: add in resource/dynamodb-table.yml <br>see ideas: https://izara.io/wiki/index.php/Design_concepts <br>see ideas: https://izara.io/wiki/index.php/Service_-_Product_Manager <syntaxhighlight lang="YAML"> ex. Config table ConfigTable: Type: "AWS::DynamoDB::Table" Properties: TableName: ${self:custom.iz_resourcePrefix}Config AttributeDefinitions: - AttributeName: configKey AttributeType: S -...")
- 07:59, 17 October 2023 Praew talk contribs created page Start project (Created page with "= Start Project For Beginner = == prepare project to local == * BitBucket account. # fork repository to own workspace # clone repository to local <syntaxhighlight lang="text"> git clone git@bitbucket.org:your_repository_path.git </syntaxhighlight> * Local Computer add workspace in VS code. # open VS Code => File/Add Folder to Workspace... # choose your project * set SSH of BitBucket # sudo apt update && sudo apt install openssh-client # sudo dnf install openssh-clie...")
- 07:40, 15 August 2023 Praew talk contribs created page Neo4j Config Settings (Created page with "= Neo4j Configuration = https://neo4j.com/docs/operations-manual/current/configuration/ <br>https://neo4j.com/docs/operations-manual/current/configuration/configuration-settings/ <br>The neo4j.conf file is the main source of configuration settings in Neo4j and includes the mappings of configuration setting keys to values. The location of the neo4j.conf file in the different configurations of Neo4j is listed in [Default file locations]. * into neo4j.conf file: ~$ cd /etc...")
- 05:11, 15 August 2023 Praew talk contribs created page On Amazon Linux (Created page with "= install on Amazon Linux | RHEL | CENTOS = You can deploy Neo4j on Red Hat, CentOS, Fedora, or Amazon Linux distributions using the Neo4j RPM package. <br>https://neo4j.com/docs/operations-manual/current/installation/linux/rpm/ * OpenJDK support if not have > install ===Set up the repository=== * get key: <syntaxhighlight lang="text"> rpm --import https://debian.neo4j.com/neotechnology.gpg.key </syntaxhighlight> * check neo4j.repo: <syntaxhighlight lang="text"> cat...")
- 05:11, 15 August 2023 Praew talk contribs created page On Ubantu (Created page with "= install on Ubuntu | Debain = You can install Neo4j on Debian, and Debian-based distributions like Ubuntu, using the Neo4j Debian package(Debian-based distributions (.deb)). <br>https://neo4j.com/docs/operations-manual/current/installation/linux/debian/ * OpenJDK support if not have > install ===Add the repository=== * To use the repository for generally available versions of Neo4j, run: <syntaxhighlight lang="text"> wget -O - https://debian.neo4j.com/neotechnology.gp...")
- 05:25, 14 August 2023 Praew talk contribs created page 2023-08-14 - Old Deploy service - Graph Handler instructions (Created page with "= Deploy instructions = # Clone project # cd \rbac\resource >> npm install # cd \rbac\app >> npm install # modify config/serverless.config.yml #* iz_serviceName(optional) #* iz_stage (optional) #* iz_region (optional) #* iz_accountId (optional) #* iz_logLevel (optional) # modify config/serverless.config.yml : For resources ## iz_DefaultKeyPairName: neo4jSharedKeyName ##* require existing key pair and make sure have private key pair installed on local computer ##* #Cre...")