Skip to content

Commit

Permalink
pushes to dev endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Dec 17, 2024
1 parent c052181 commit 9e210f4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Dev Deploy to s3
on:
push:
branches:
- dev
jobs:
build:
name: Build files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Deploy to s3
env:
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run:
aws s3 cp . s3://li-permit-tracker-dev --region us-east-1 --recursive # change it
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(function ($, _) {
// config
var endpoint = 'https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/PermitAppStatusEclipse/FeatureServer/0/query'
// var endpoint = 'https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/PermitAppStatusEclipse/FeatureServer/0/query'
var endpoint = 'https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/AGO_Lyr_Permit_App_Status_Eclipse/FeatureServer/0/query'
// var FAILED_OR_INCOMPLETE_TEXT = "\
// PLAN REVIEW COMPLETED; IF 'APPROVED' A BILLING STATEMENT HAS BEEN \
// ISSUED BY THE DEPARTMENT TO THE PRIMARY APPLICANT. IF 'INCOMPLETE' OR \
Expand Down

0 comments on commit 9e210f4

Please sign in to comment.