This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from "react"; | |
| import { Container, Row, Col } from 'reactstrap'; | |
| import '../styles/video-react.css' | |
| export interface ApplicationProps { url: string; } | |
| export class Application extends React.Component<ApplicationProps, {}> { | |
| private videoNode: HTMLVideoElement; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: ruby:2.6 | |
| services: | |
| - postgres:11-alpine | |
| variables: | |
| POSTGRES_DB: myorg_test | |
| CONTAINER_IMAGE: registry.gitlab.com/myorg/myapp | |
| stages: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .github/workflows/main.yaml | |
| name: Main | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| # If you need DB like PostgreSQL, Redis then define service below. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build_web: |
OlderNewer