Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Han Ju Kim
Hi Mua,

I found some useful function of Dataflow to import JSON type file from 
datastore entities, I'm struggling with this now. All looks good, but 
exported file does not include any data at all.
https://cloud.google.com/dataflow/docs/guides/templates/provided-batch#datastoretogcstext

Cheers,
Han

On Tuesday, 27 August 2019 13:52:35 UTC+12, Han Ju Kim wrote:
>
> Great! I will have a look at. 
> Still confusing, why google does not provide CSV,TXT or JSON export of 
> datastore.
>
> Cheers,
> Han
>
> On Tuesday, 27 August 2019 13:26:18 UTC+12, Mua Rachmann wrote:
>>
>> If that sucks, You might want to have a look at this 
>> https://github.com/junosuarez/node-level-export
>>
>> Best,
>> Mua
>>
>> On Tue, Aug 27, 2019 at 2:20 AM Mua Rachmann  wrote:
>>
>>> Okay, I think you might want to look at 
>>> https://github.com/nisaacson/leveldb-json/issues/1 which is pretty 
>>> similar to your logs,
>>> Also you might want to build from source and consider a fork of the 
>>> original repo - https://github.com/killix/leveldb-json 
>>> which seems to solve the issue. Dependencies not being upgraded or so. - 
>>> Basically applying - 
>>> https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386
>>>
>>> Can you try that and see if it solves your problem
>>>
>>> Regards,
>>> Mua
>>>
>>> On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim  wrote:
>>>
 This is my log. When I tried to "npm install -g leveldb-json", it comes 
 up

 C:\WINDOWS\system32>npm install -g leveldb-json
 C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json -> 
 C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
 C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json -> 
 C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json

 > leveldown@0.10.6 install 
 C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
 > node-gyp rebuild


 C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
  
 not defined npm_config_node_gyp (node "C:\Program 
 Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
  
 rebuild )  else (node "C:\Program 
 Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" 
 rebuild )
 gyp ERR! configure error
 gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import 
 sys; print "%s.%s.%s" % sys.version_info[:3];
 gyp ERR! stack   File "", line 1
 gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
 gyp ERR! stack^
 gyp ERR! stack SyntaxError: invalid syntax
 gyp ERR! stack
 gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
 gyp ERR! stack at ChildProcess.emit (events.js:198:13)
 gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
 gyp ERR! stack at Process.ChildProcess._handle.onexit 
 (internal/child_process.js:259:5)
 gyp ERR! System Windows_NT 10.0.18362
 gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program 
 Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js"
  
 "rebuild"
 gyp ERR! cwd 
 C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
 gyp ERR! node -v v10.16.3
 gyp ERR! node-gyp -v v3.8.0
 gyp ERR! not ok
 npm ERR! code ELIFECYCLE
 npm ERR! errno 1
 npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
 npm ERR! Exit status 1
 npm ERR!
 npm ERR! Failed at the leveldown@0.10.6 install script.
 npm ERR! This is probably not a problem with npm. There is likely 
 additional logging output above.

 npm ERR! A complete log of this run can be found in:
 npm ERR!
  
 C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log

 C:\WINDOWS\system32>

 On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>
> Hi Kim,
>
> Can we see the logs here?
>
> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:
>
>> Hi Mua,
>>
>> I appreciate prompt feedback! I already tried that, but it showed 
>> some error and not updated quite long time period. Any help will be 
>> appreciated.
>>
>> Cheers,
>> Han
>>
>> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>>
>>> Hi Kim,
>>>
>>> You might want to have a look at this - 
>>> https://github.com/nisaacson/leveldb-json
>>>
>>> regards.
>>> Mua
>>>
>>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  
>>> wrote:
>>>
 I'm trying to export Datastore entities as JSON format. By using 
 API or gsutil such as "gcloud datastore export", it only export as 
 LevelDB 
 format with 

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Han Ju Kim
Great! I will have a look at. 
Still confusing, why google does not provide CSV,TXT or JSON export of 
datastore.

Cheers,
Han

On Tuesday, 27 August 2019 13:26:18 UTC+12, Mua Rachmann wrote:
>
> If that sucks, You might want to have a look at this 
> https://github.com/junosuarez/node-level-export
>
> Best,
> Mua
>
> On Tue, Aug 27, 2019 at 2:20 AM Mua Rachmann  > wrote:
>
>> Okay, I think you might want to look at 
>> https://github.com/nisaacson/leveldb-json/issues/1 which is pretty 
>> similar to your logs,
>> Also you might want to build from source and consider a fork of the 
>> original repo - https://github.com/killix/leveldb-json 
>> which seems to solve the issue. Dependencies not being upgraded or so. - 
>> Basically applying - 
>> https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386
>>
>> Can you try that and see if it solves your problem
>>
>> Regards,
>> Mua
>>
>> On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim > > wrote:
>>
>>> This is my log. When I tried to "npm install -g leveldb-json", it comes 
>>> up
>>>
>>> C:\WINDOWS\system32>npm install -g leveldb-json
>>> C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json -> 
>>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
>>> C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json -> 
>>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json
>>>
>>> > leveldown@0.10.6 install 
>>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>>> > node-gyp rebuild
>>>
>>>
>>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
>>>  
>>> not defined npm_config_node_gyp (node "C:\Program 
>>> Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
>>>  
>>> rebuild )  else (node "C:\Program 
>>> Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" 
>>> rebuild )
>>> gyp ERR! configure error
>>> gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import 
>>> sys; print "%s.%s.%s" % sys.version_info[:3];
>>> gyp ERR! stack   File "", line 1
>>> gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
>>> gyp ERR! stack^
>>> gyp ERR! stack SyntaxError: invalid syntax
>>> gyp ERR! stack
>>> gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
>>> gyp ERR! stack at ChildProcess.emit (events.js:198:13)
>>> gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
>>> gyp ERR! stack at Process.ChildProcess._handle.onexit 
>>> (internal/child_process.js:259:5)
>>> gyp ERR! System Windows_NT 10.0.18362
>>> gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program 
>>> Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" 
>>> "rebuild"
>>> gyp ERR! cwd 
>>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>>> gyp ERR! node -v v10.16.3
>>> gyp ERR! node-gyp -v v3.8.0
>>> gyp ERR! not ok
>>> npm ERR! code ELIFECYCLE
>>> npm ERR! errno 1
>>> npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
>>> npm ERR! Exit status 1
>>> npm ERR!
>>> npm ERR! Failed at the leveldown@0.10.6 install script.
>>> npm ERR! This is probably not a problem with npm. There is likely 
>>> additional logging output above.
>>>
>>> npm ERR! A complete log of this run can be found in:
>>> npm ERR!
>>>  
>>> C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log
>>>
>>> C:\WINDOWS\system32>
>>>
>>> On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:

 Hi Kim,

 Can we see the logs here?

 On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:

> Hi Mua,
>
> I appreciate prompt feedback! I already tried that, but it showed some 
> error and not updated quite long time period. Any help will be 
> appreciated.
>
> Cheers,
> Han
>
> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>
>> Hi Kim,
>>
>> You might want to have a look at this - 
>> https://github.com/nisaacson/leveldb-json
>>
>> regards.
>> Mua
>>
>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  
>> wrote:
>>
>>> I'm trying to export Datastore entities as JSON format. By using API 
>>> or gsutil such as "gcloud datastore export", it only export as LevelDB 
>>> format with many output-xxx files. Is there any tool to converting this 
>>> LevelDB files to JSON format or any third party engine to do that?
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to google-a...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> 

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
If that sucks, You might want to have a look at this
https://github.com/junosuarez/node-level-export

Best,
Mua

On Tue, Aug 27, 2019 at 2:20 AM Mua Rachmann  wrote:

> Okay, I think you might want to look at
> https://github.com/nisaacson/leveldb-json/issues/1 which is pretty
> similar to your logs,
> Also you might want to build from source and consider a fork of the
> original repo - https://github.com/killix/leveldb-json
> which seems to solve the issue. Dependencies not being upgraded or so. -
> Basically applying -
> https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386
>
> Can you try that and see if it solves your problem
>
> Regards,
> Mua
>
> On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim  wrote:
>
>> This is my log. When I tried to "npm install -g leveldb-json", it comes up
>>
>> C:\WINDOWS\system32>npm install -g leveldb-json
>> C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json ->
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
>> C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json ->
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json
>>
>> > leveldown@0.10.6 install
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>> > node-gyp rebuild
>>
>>
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
>> not defined npm_config_node_gyp (node "C:\Program
>> Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
>> rebuild )  else (node "C:\Program
>> Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js"
>> rebuild )
>> gyp ERR! configure error
>> gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import
>> sys; print "%s.%s.%s" % sys.version_info[:3];
>> gyp ERR! stack   File "", line 1
>> gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
>> gyp ERR! stack^
>> gyp ERR! stack SyntaxError: invalid syntax
>> gyp ERR! stack
>> gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
>> gyp ERR! stack at ChildProcess.emit (events.js:198:13)
>> gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
>> gyp ERR! stack at Process.ChildProcess._handle.onexit
>> (internal/child_process.js:259:5)
>> gyp ERR! System Windows_NT 10.0.18362
>> gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program
>> Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js"
>> "rebuild"
>> gyp ERR! cwd
>> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
>> gyp ERR! node -v v10.16.3
>> gyp ERR! node-gyp -v v3.8.0
>> gyp ERR! not ok
>> npm ERR! code ELIFECYCLE
>> npm ERR! errno 1
>> npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
>> npm ERR! Exit status 1
>> npm ERR!
>> npm ERR! Failed at the leveldown@0.10.6 install script.
>> npm ERR! This is probably not a problem with npm. There is likely
>> additional logging output above.
>>
>> npm ERR! A complete log of this run can be found in:
>> npm ERR!
>>  
>> C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log
>>
>> C:\WINDOWS\system32>
>>
>> On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>>>
>>> Hi Kim,
>>>
>>> Can we see the logs here?
>>>
>>> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:
>>>
 Hi Mua,

 I appreciate prompt feedback! I already tried that, but it showed some
 error and not updated quite long time period. Any help will be appreciated.

 Cheers,
 Han

 On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>
> Hi Kim,
>
> You might want to have a look at this -
> https://github.com/nisaacson/leveldb-json
>
> regards.
> Mua
>
> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>
>> I'm trying to export Datastore entities as JSON format. By using API
>> or gsutil such as "gcloud datastore export", it only export as LevelDB
>> format with many output-xxx files. Is there any tool to converting this
>> LevelDB files to JSON format or any third party engine to do that?
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to google-a...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
>> 
>> .
>>
> --
 You received this message because you are subscribed to the Google
 Groups "Google App Engine" group.
 To unsubscribe from this group and stop 

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Okay, I think you might want to look at
https://github.com/nisaacson/leveldb-json/issues/1 which is pretty similar
to your logs,
Also you might want to build from source and consider a fork of the
original repo - https://github.com/killix/leveldb-json
which seems to solve the issue. Dependencies not being upgraded or so. -
Basically applying -
https://github.com/killix/leveldb-json/commit/35df5f3d396907e015527984aa03e13726e9e386

Can you try that and see if it solves your problem

Regards,
Mua

On Tue, Aug 27, 2019 at 2:13 AM Han Ju Kim  wrote:

> This is my log. When I tried to "npm install -g leveldb-json", it comes up
>
> C:\WINDOWS\system32>npm install -g leveldb-json
> C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json ->
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
> C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json ->
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json
>
> > leveldown@0.10.6 install
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
> > node-gyp rebuild
>
>
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
> not defined npm_config_node_gyp (node "C:\Program
> Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
> rebuild )  else (node "C:\Program
> Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js"
> rebuild )
> gyp ERR! configure error
> gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import
> sys; print "%s.%s.%s" % sys.version_info[:3];
> gyp ERR! stack   File "", line 1
> gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
> gyp ERR! stack^
> gyp ERR! stack SyntaxError: invalid syntax
> gyp ERR! stack
> gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
> gyp ERR! stack at ChildProcess.emit (events.js:198:13)
> gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
> gyp ERR! stack at Process.ChildProcess._handle.onexit
> (internal/child_process.js:259:5)
> gyp ERR! System Windows_NT 10.0.18362
> gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program
> Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js"
> "rebuild"
> gyp ERR! cwd
> C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
> gyp ERR! node -v v10.16.3
> gyp ERR! node-gyp -v v3.8.0
> gyp ERR! not ok
> npm ERR! code ELIFECYCLE
> npm ERR! errno 1
> npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
> npm ERR! Exit status 1
> npm ERR!
> npm ERR! Failed at the leveldown@0.10.6 install script.
> npm ERR! This is probably not a problem with npm. There is likely
> additional logging output above.
>
> npm ERR! A complete log of this run can be found in:
> npm ERR!
>  
> C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log
>
> C:\WINDOWS\system32>
>
> On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>>
>> Hi Kim,
>>
>> Can we see the logs here?
>>
>> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:
>>
>>> Hi Mua,
>>>
>>> I appreciate prompt feedback! I already tried that, but it showed some
>>> error and not updated quite long time period. Any help will be appreciated.
>>>
>>> Cheers,
>>> Han
>>>
>>> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:

 Hi Kim,

 You might want to have a look at this -
 https://github.com/nisaacson/leveldb-json

 regards.
 Mua

 On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:

> I'm trying to export Datastore entities as JSON format. By using API
> or gsutil such as "gcloud datastore export", it only export as LevelDB
> format with many output-xxx files. Is there any tool to converting this
> LevelDB files to JSON format or any third party engine to do that?
>
> --
> You received this message because you are subscribed to the Google
> Groups "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to google-a...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-a...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com
>>> 

Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Han Ju Kim
This is my log. When I tried to "npm install -g leveldb-json", it comes up

C:\WINDOWS\system32>npm install -g leveldb-json
C:\Users\hkim\AppData\Roaming\npm\leveldb-load-from-json -> 
C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\load-from-json
C:\Users\hkim\AppData\Roaming\npm\leveldb-dump-to-json -> 
C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\bin\dump-to-json

> leveldown@0.10.6 install 
C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
> node-gyp rebuild


C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown>if
 
not defined npm_config_node_gyp (node "C:\Program 
Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js"
 
rebuild )  else (node "C:\Program 
Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" 
rebuild )
gyp ERR! configure error
gyp ERR! stack Error: Command failed: C:\Python37\python.EXE -c import sys; 
print "%s.%s.%s" % sys.version_info[:3];
gyp ERR! stack   File "", line 1
gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
gyp ERR! stack^
gyp ERR! stack SyntaxError: invalid syntax
gyp ERR! stack
gyp ERR! stack at ChildProcess.exithandler (child_process.js:294:12)
gyp ERR! stack at ChildProcess.emit (events.js:198:13)
gyp ERR! stack at maybeClose (internal/child_process.js:982:16)
gyp ERR! stack at Process.ChildProcess._handle.onexit 
(internal/child_process.js:259:5)
gyp ERR! System Windows_NT 10.0.18362
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program 
Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" 
"rebuild"
gyp ERR! cwd 
C:\Users\hkim\AppData\Roaming\npm\node_modules\leveldb-json\node_modules\leveldown
gyp ERR! node -v v10.16.3
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! leveldown@0.10.6 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the leveldown@0.10.6 install script.
npm ERR! This is probably not a problem with npm. There is likely 
additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!
 
C:\Users\hkim\AppData\Roaming\npm-cache\_logs\2019-08-27T01_11_59_731Z-debug.log

C:\WINDOWS\system32>

On Tuesday, 27 August 2019 13:10:37 UTC+12, Mua Rachmann wrote:
>
> Hi Kim,
>
> Can we see the logs here?
>
> On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  > wrote:
>
>> Hi Mua,
>>
>> I appreciate prompt feedback! I already tried that, but it showed some 
>> error and not updated quite long time period. Any help will be appreciated.
>>
>> Cheers,
>> Han
>>
>> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>>
>>> Hi Kim,
>>>
>>> You might want to have a look at this - 
>>> https://github.com/nisaacson/leveldb-json
>>>
>>> regards.
>>> Mua
>>>
>>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>>>
 I'm trying to export Datastore entities as JSON format. By using API or 
 gsutil such as "gcloud datastore export", it only export as LevelDB format 
 with many output-xxx files. Is there any tool to converting this LevelDB 
 files to JSON format or any third party engine to do that?

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Google App Engine" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-a...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-a...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/7cd042ec-6ecc-4a16-9aba-889606d02191%40googlegroups.com.


Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Hi Kim,

Can we see the logs here?

On Tue, Aug 27, 2019 at 2:05 AM Han Ju Kim  wrote:

> Hi Mua,
>
> I appreciate prompt feedback! I already tried that, but it showed some
> error and not updated quite long time period. Any help will be appreciated.
>
> Cheers,
> Han
>
> On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>>
>> Hi Kim,
>>
>> You might want to have a look at this -
>> https://github.com/nisaacson/leveldb-json
>>
>> regards.
>> Mua
>>
>> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:
>>
>>> I'm trying to export Datastore entities as JSON format. By using API or
>>> gsutil such as "gcloud datastore export", it only export as LevelDB format
>>> with many output-xxx files. Is there any tool to converting this LevelDB
>>> files to JSON format or any third party engine to do that?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-a...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-j2E7jsm7kdhuoCmy7Q3J8bsyROGuWUnpW3AA8xyj%3Dc0A%40mail.gmail.com.


Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Han Ju Kim
Hi Mua,

I appreciate prompt feedback! I already tried that, but it showed some 
error and not updated quite long time period. Any help will be appreciated.

Cheers,
Han

On Tuesday, 27 August 2019 11:50:47 UTC+12, Mua Rachmann wrote:
>
> Hi Kim,
>
> You might want to have a look at this - 
> https://github.com/nisaacson/leveldb-json
>
> regards.
> Mua
>
> On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  > wrote:
>
>> I'm trying to export Datastore entities as JSON format. By using API or 
>> gsutil such as "gcloud datastore export", it only export as LevelDB format 
>> with many output-xxx files. Is there any tool to converting this LevelDB 
>> files to JSON format or any third party engine to do that?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-a...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/22e67aef-22ad-4dcd-9fdd-ecaaa89539bc%40googlegroups.com.


Re: [google-appengine] Datastore export as JSON format

2019-08-26 Thread Mua Rachmann
Hi Kim,

You might want to have a look at this -
https://github.com/nisaacson/leveldb-json

regards.
Mua

On Tue, Aug 27, 2019 at 12:35 AM Han Ju Kim  wrote:

> I'm trying to export Datastore entities as JSON format. By using API or
> gsutil such as "gcloud datastore export", it only export as LevelDB format
> with many output-xxx files. Is there any tool to converting this LevelDB
> files to JSON format or any third party engine to do that?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-iXYOuBC%2BhsbRP71WMCkAQvZJQ%3D9dcwXozA6EOYPVjS5A%40mail.gmail.com.


[google-appengine] Datastore export as JSON format

2019-08-26 Thread Han Ju Kim
I'm trying to export Datastore entities as JSON format. By using API or 
gsutil such as "gcloud datastore export", it only export as LevelDB format 
with many output-xxx files. Is there any tool to converting this LevelDB 
files to JSON format or any third party engine to do that?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/06c074cc-cc4a-4c73-a8d9-ed7299d5421e%40googlegroups.com.


Re: [google-appengine] Re: Viewing App engine Deployed files

2019-08-26 Thread Mua Rachmann
Hello George,

Thanks for your prompt response.

Actually what I meant was viewing the deployed files from the cloud shell
terminal. In my app.yaml file i place a key
APP_STORAGE = /tmp but in the cloud shell when I navigate to this i cant
find the projects files.

Also i need this feature in production to be able to read the laravel logs
founf in the **storage/framework/x.logs**
folder to be able to interprete some results there off. Could this be
possible from the cloud. Generally what I do is a **tail -f .**
which works but I need this  in production to simulate some stuffs.

Best,
Mua

On Tue, Aug 27, 2019 at 12:08 AM 'George (Cloud Platform Support)' via
Google App Engine  wrote:

> Hello Mua,
>
> Artisan is the command-line interface included with Laravel. What do you
> mean by "resolve it on the app engine"? You seem to say you have run
> Artisan commands locally, in your development environment, and you would
> like now to run the same commands to modify your deployed app's code, while
> running in the Cloud and offering service. This is not possible. If you
> modified your app locally, you can modify the deployed app's old version
> only by deploying the new version, and then transferring traffic to this
> deployed new version.
>
> If you want to see your deployed files, you can do that locally, as the
> deployed code is necessarily identical to the local code you deployed.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/33a57c5f-25f6-4f94-9c47-58b2a0b48dd1%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHAhu-gG%2BAk2ApjKNvO2hB%3DHVerZPXA8kjoRRSizgKNohm0v8Q%40mail.gmail.com.


[google-appengine] Re: Viewing App engine Deployed files

2019-08-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mua, 

Artisan is the command-line interface included with Laravel. What do you 
mean by "resolve it on the app engine"? You seem to say you have run 
Artisan commands locally, in your development environment, and you would 
like now to run the same commands to modify your deployed app's code, while 
running in the Cloud and offering service. This is not possible. If you 
modified your app locally, you can modify the deployed app's old version 
only by deploying the new version, and then transferring traffic to this 
deployed new version. 

If you want to see your deployed files, you can do that locally, as the 
deployed code is necessarily identical to the local code you deployed. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/33a57c5f-25f6-4f94-9c47-58b2a0b48dd1%40googlegroups.com.


[google-appengine] Re: Steps for migrating datastore and cloudstorage entities to another project

2019-08-26 Thread 'Nicolas (Google Cloud Platform Support)' via Google App Engine


Hi Rob,

Firestore is considered the newest version of Cloud Datastore 
, 
there are multiple benefits 
 
that come with this update.

After doing a little bit of research on this I've found a very interesting 
article 
 
that describes multiple ways to migrate blobs to a GCS bucket in another 
project. I personally think that in your case the option #2 which consist 
of using the open source tools[4] that would store a Datastore mapping from 
the existing blob key to the GCS filename and then running a simple gsutils 
cp [4] command 
seems to be the easiest options

On Saturday, August 24, 2019 at 12:55:31 PM UTC-4, Rob Curtis wrote:
>
> Hi,
>
> I'd like to migrate existing data from one project to another.
> If found this detail here which outlines the steps to 
> https://cloud.google.com/datastore/docs/export-import-entities (however 
> this is to firestore in datastore mode, is that the standard now?)
>
> The issue I have is that the Google cloud storage records I have are 
> accessed via blob_keys in a lot of cases and unfortunately we didn't store 
> the filenames :(
> So when migrating, do the blob_keys still work (provided I don't delete 
> the GCS file associated with the blob_key on the old project?)
>
> Are there any other gotchas to consider?
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a3c2f22b-2d5c-4be9-949d-aacdd9a88229%40googlegroups.com.


Re: [google-appengine] Brazil IP

2019-08-26 Thread Manu Campos
Ok! I will add u at night!
Tnks

Em seg, 26 de ago de 2019 14:31, Saravana Kumar 
escreveu:

> My skype Id is techiesaravana
>
> On Mon, 26 Aug 2019, 10:40 pm Manu Campos, 
> wrote:
>
>> Hi Techie,
>> How can I ping you?
>>
>>
>> Em seg, 26 de ago de 2019 às 14:07, Saravana Kumar <
>> techiesar...@gmail.com> escreveu:
>>
>>> Hey
>>> Yes I can set it up for you
>>> Can you ping me
>>>
>>> On Mon, 26 Aug 2019, 10:31 pm Manu Campos, 
>>> wrote:
>>>
 Hello guys!
 I need a virtual machine with IP from Brazil.
 Does anyone know how to set up?

 Thanks

>>> --
 You received this message because you are subscribed to the Google
 Groups "Google App Engine" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to google-appengine+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/google-appengine/e84b191b-9fdc-4c4d-becf-bd293d6bdf11%40googlegroups.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-appengine+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/CAGkJLb-ycd04gFUtSbD6tnVNoM8B5KaKjgbSYm3HzSS37urKHw%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/CACSgnbOhaiKRRPm2HQ0f7nbmfnn8Zet%3D48aCFEsM0AA8OKecHQ%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CAGkJLb-tyXtFKKnk0UNN7ks8uws78ZSTqeQMTZHzHLxy0pHRGg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CACSgnbNfD-EL9x5suYSDQOOk8Hh0%3DohDyxQM_pBrnDF_QBU54A%40mail.gmail.com.


Re: [google-appengine] Brazil IP

2019-08-26 Thread Saravana Kumar
My skype Id is techiesaravana

On Mon, 26 Aug 2019, 10:40 pm Manu Campos,  wrote:

> Hi Techie,
> How can I ping you?
>
>
> Em seg, 26 de ago de 2019 às 14:07, Saravana Kumar 
> escreveu:
>
>> Hey
>> Yes I can set it up for you
>> Can you ping me
>>
>> On Mon, 26 Aug 2019, 10:31 pm Manu Campos, 
>> wrote:
>>
>>> Hello guys!
>>> I need a virtual machine with IP from Brazil.
>>> Does anyone know how to set up?
>>>
>>> Thanks
>>>
>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google App Engine" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-appengine+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/e84b191b-9fdc-4c4d-becf-bd293d6bdf11%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/CAGkJLb-ycd04gFUtSbD6tnVNoM8B5KaKjgbSYm3HzSS37urKHw%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CACSgnbOhaiKRRPm2HQ0f7nbmfnn8Zet%3D48aCFEsM0AA8OKecHQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAGkJLb-tyXtFKKnk0UNN7ks8uws78ZSTqeQMTZHzHLxy0pHRGg%40mail.gmail.com.


Re: [google-appengine] Brazil IP

2019-08-26 Thread Manu Campos
Hi Techie,
How can I ping you?


Em seg, 26 de ago de 2019 às 14:07, Saravana Kumar 
escreveu:

> Hey
> Yes I can set it up for you
> Can you ping me
>
> On Mon, 26 Aug 2019, 10:31 pm Manu Campos, 
> wrote:
>
>> Hello guys!
>> I need a virtual machine with IP from Brazil.
>> Does anyone know how to set up?
>>
>> Thanks
>>
> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/e84b191b-9fdc-4c4d-becf-bd293d6bdf11%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CAGkJLb-ycd04gFUtSbD6tnVNoM8B5KaKjgbSYm3HzSS37urKHw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CACSgnbOhaiKRRPm2HQ0f7nbmfnn8Zet%3D48aCFEsM0AA8OKecHQ%40mail.gmail.com.


Re: [google-appengine] Brazil IP

2019-08-26 Thread Saravana Kumar
Hey
Yes I can set it up for you
Can you ping me

On Mon, 26 Aug 2019, 10:31 pm Manu Campos,  wrote:

> Hello guys!
> I need a virtual machine with IP from Brazil.
> Does anyone know how to set up?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/e84b191b-9fdc-4c4d-becf-bd293d6bdf11%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAGkJLb-ycd04gFUtSbD6tnVNoM8B5KaKjgbSYm3HzSS37urKHw%40mail.gmail.com.


[google-appengine] Viewing App engine Deployed files

2019-08-26 Thread Mua Rachmann
Hi everyone,

Have been working with the app engine for quite sometime now and have 
successfully uploaded my application (php - laravel 5.8) to the app engine 
which
works very fine. I have one issue of which i resolved locally but cant seem 
to resolve it on the app engine since i cant view my files or rather "cd 
into my projects root directory" as i will put it. It actually entails 
running the command ** Artisan::call('config:cache') so that my project's 
storage files can be loaded once again. i tried this by passing via a 
controller but this doesn't seem to work.

Question: How can i have access to my projects root directory via the cloud 
shell. opening this via cloud shell shows me other files like 
php-sample-docs etc but i can view my deployed files. Any help will be 
grateful thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9e09ef23-4267-4f1c-b21a-7f27f6ec9cf0%40googlegroups.com.


[google-appengine] Re: AppEngine Dev, QA and production environments, how to manage them and and set it up?

2019-08-26 Thread Eduardo Moreira
Thank you Diogo

That is a great place to get started but it does feel we need proper 
training for this, do you know where we could get this?

Thank you

On Friday, 23 August 2019 04:47:38 UTC+1, Diogo Almeida wrote:
>
> As per the document [1], the different development environments should be 
> managed by setting up a different project for each environment. That said, 
> you would manage the different environments with separate repositories and 
> could use Cloud Source Repository and Cloud Build to deploy the code to App 
> Engine.
>
> I would recommend you explore the documentation of these two products:
>
> 1 - Cloud Source Repositories [2][3]: `Google Cloud Source Repositories 
> provides Git version control to support collaborative development of an 
> application or service, such as those that run on App Engine and Compute 
> Engine`. You can automatically deploy an application stored in Cloud Source 
> Repositories to App Engine when there is a new commit on your repository. 
>
> 2 - Cloud Build [4]: `Cloud Build can import source code from a variety of 
> repositories or cloud storage spaces, execute a build to your 
> specifications, and produce artifacts such as Docker containers or Java 
> archives`.
>
> I also recommend you take a look at this Youtube video [5] where you will 
> see a hands-on presentation on how to use both products.
>
> [1] 
> https://cloud.google.com/appengine/docs/standard/go/creating-separate-dev-environments
> [2] 
> https://cloud.google.com/source-repositories/docs/quickstart-triggering-builds-with-source-repositories
> [3] https://cloud.google.com/source-repositories/
> [4] https://cloud.google.com/cloud-build/
> [5] https://www.youtube.com/watch?v=yP9a5gDRUqY
>
>
> On Thursday, August 22, 2019 at 8:03:33 PM UTC-4, Eduardo Moreira wrote:
>>
>> Hello Everyone
>>
>> We have a project that we would like to manage in the most professional 
>> way, so we would like to have a DEV environment for developers to upload 
>> the project and test in the AppEnginne environment, then we would like to 
>> have a QA Environment, where we after the Devs are ok with the work, we 
>> upload the project for customers and Selenium automated test to their part, 
>> finally, when we are all happy, then we need to move the project into a 
>> PRODUCTION environment which is the one where customer actually access the 
>> final product.
>>
>> All we have found about this is the following:
>>
>> https://cloud.google.com/appengine/docs/standard/go/creating-separate-dev-environments
>>
>> But we have many questions, like what is the best way to setup this 
>> environment, how to copy code from one environment to the other, for 
>> example how do we move the code from DEV to QA. 
>>
>> Is there a course or a step by step video anyone can share with us? we 
>> need some help with this.
>>
>> Thank you
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/39027187-44d3-4d21-bc28-82e9e6721f20%40googlegroups.com.


[google-appengine] Brazil IP

2019-08-26 Thread Manu Campos
Hello guys! 
I need a virtual machine with IP from Brazil. 
Does anyone know how to set up?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e84b191b-9fdc-4c4d-becf-bd293d6bdf11%40googlegroups.com.


[google-appengine] ERROR: his client is restricted to users within its organization

2019-08-26 Thread Creative M

Hi,
 i am facing error of "This client is restricted to users within its 
organization" while logins gcp app engine with project "dev-poet-237214"

Please find the attachments screenshots:
https://prnt.sc/owhwth
https://prnt.sc/owi5uo

please check this issue and fix asap.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/cf8c9e66-460a-449c-8072-53dad1a1241d%40googlegroups.com.