From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.99.98.193 with SMTP id w184mr5512860pgb.151.1495225581373; Fri, 19 May 2017 13:26:21 -0700 (PDT) X-Received: by 10.157.45.79 with SMTP id v73mr247558ota.20.1495225581331; Fri, 19 May 2017 13:26:21 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.unit0.net!peer01.am4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!border1.nntp.dca1.giganews.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!67no765040itx.0!news-out.google.com!m134ni3186itb.0!nntp.google.com!67no765036itx.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 19 May 2017 13:26:21 -0700 (PDT) In-Reply-To: <59522c4f-4dd4-4972-b5ce-8fd99e5f6eb8@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a02:1205:5055:3750:2188:bed8:b483:71ca; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG NNTP-Posting-Host: 2a02:1205:5055:3750:2188:bed8:b483:71ca References: <1723366e-e42a-4a23-af2b-40103d19a7dc@googlegroups.com> <59522c4f-4dd4-4972-b5ce-8fd99e5f6eb8@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <61b8a71d-c0cd-4b17-a868-6bf8508f2524@googlegroups.com> Subject: Re: hows gnoga? anyone got blog site etc up I can see? From: gautier_niouzes@hotmail.com Injection-Date: Fri, 19 May 2017 20:26:21 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Received-Body-CRC: 1248948856 X-Received-Bytes: 2344 Xref: news.eternal-september.org comp.lang.ada:46819 Date: 2017-05-19T13:26:21-07:00 List-Id: > ok now are you making any startup to do e commerce or financial processin= g or anything with gnoga? In this case, it is a all about games... > use postgresql backend? Sqlite so far. Gnoga provides a root database package, plus sqlite and mysq= l implementations. I picked sqlite because it seemed the simpler choice. At= least in this case, the database server will be statically linked to the e= xecutable. This means your entire Gnoga server, including database manageme= nt, is contained in 1 executable file. You deploy then the resources for th= e ./img, ./html, ./js, ./css directories, and it's done. Packing all that together can be as simple as: zipada -ed3 my_app/app_deploy.zip bin/app_main.exe bin/app.db img/* html/* = js/* css/* css/images/* G.