Skip to content

Commit

Permalink
Merge pull request #578 from hackforla/dev
Browse files Browse the repository at this point in the history
Release update
  • Loading branch information
sellnat77 authored May 6, 2020
2 parents 4f1d199 + f3ed52f commit ef1e337
Show file tree
Hide file tree
Showing 63 changed files with 7,893 additions and 937 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/Continuous_Delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,8 @@ env:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Rebuild sass
run: npm rebuild node-sass
- name: Install Packages
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/Continuous_Integration_Frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,8 @@ on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: Lint
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/Publish_Frontend_Package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build and Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
Expand Down
17 changes: 17 additions & 0 deletions Orchestration/docker-compose-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ services:
PROJECT_URL: REDACTED
GITHUB_TOKEN: REDACTED
TOKEN: REDACTED
REDIS_URL: redis://redis:6379
ports:
- 5000:5000

Expand Down Expand Up @@ -47,5 +48,21 @@ services:
container_name: "postgres-dashboard"
ports:
- 8080:8080

redis:
build:
context: ../redis
container_name: "311-redis"
expose:
- 6379

rebrow:
image: marian/rebrow
links:
- redis:redis
container_name: "redis-dashboard"
ports:
- 5001:5001

volumes:
backend_data:
Loading

0 comments on commit ef1e337

Please sign in to comment.