ScienceTools-CI: Link, Blue Ocean UI
GlastRelease-CI: Link, Blue Ocean UI
- Validate git migration (this is mostly done)
ScienceTools-CI: Link, Blue Ocean UI
GlastRelease-CI: Link, Blue Ocean UI
| class Database(Schema): | |
| class Meta: | |
| ordered = True | |
| name = fields.String() | |
| id = fields.Integer() | |
| tables = fields.Nested(Table, many=True) | |
| class Table(Schema): | |
| class Meta: | |
| ordered = True |
| def this(): | |
| """ | |
| okay | |
| """ | |
| pass | |
| def this(): | |
| r""" | |
| okay |
Joris and I have been working on a plan for containers, here's our progress and findings so far.
We believe we will want a few flavors of container images in both and that we will need to leverage both Singularity and Docker.
We believe the adoption of CVMFS will be necessary and viable. At SLAC,
| # Show tables for S12_sdss (default schema) | |
| GET /meta/v1/db/S12_sdss/tables HTTP/1.1 | |
| Accept: application/json | |
| Host: localhost:5000 | |
| HTTP/1.0 200 OK | |
| Content-Type: application/json | |
| Content-Length: 47362 |
| from marshmallow import Schema, fields | |
| import json | |
| class Database(Schema): | |
| class Meta: | |
| ordered = True | |
| name = fields.String() | |
| host = fields.String(attribute="conn_host") |
| # ScienceTools packageList.txt | |
| # $Id: packageList.txt,v 1.211 2017/04/28 19:24:14 jchiang Exp $ | |
| # in common with GlastRelease | |
| xmlBase xmlBase-05-07-01 | |
| astro astro-04-00-02 | |
| facilities facilities-02-23-03 | |
| flux flux-08-44-00 | |
| # infrastructure |
| # -*- coding: utf-8 -*- | |
| """ | |
| Collection of query wrappers / abstractions to both facilitate data | |
| retrieval and to reduce dependency on DB-specific API. | |
| """ | |
| from __future__ import print_function, division | |
| from builtins import str, bytes, map, zip | |
| #from datetime import datetime, date, time |