Compare commits

...

3 Commits

@ -1 +1 @@
node_modules
node_modulesset_env.sh

@ -1,10 +1,10 @@
# This file is used for convenience of local development.
# DO NOT STORE YOUR CREDENTIALS INTO GIT
export POSTGRES_USERNAME=postgres
export POSTGRES_PASSWORD=myPassword
export POSTGRES_HOST=mydbinstance.csxbuclmtj3c.us-east-1.rds.amazonaws.com
export POSTGRES_PASSWORD=postgres
export POSTGRES_HOST=database-1.cvudakyyy77n.us-east-1.rds.amazonaws.com
export POSTGRES_DB=postgres
export AWS_BUCKET=arn:aws:s3:::myawsbucket-75139724085
export AWS_BUCKET=arn:aws:s3:::udagram593666028033
export AWS_REGION=us-east-1
export AWS_PROFILE=default
export JWT_SECRET=mysecretstring

File diff suppressed because it is too large Load Diff

@ -1,2 +1,2 @@
aws s3 cp --recursive --acl public-read ./www s3://myawsbucket-75139724085/
aws s3 cp --acl public-read --cache-control="max-age=0, no-cache, no-store, must-revalidate" ./www/index.html s3://myawsbucket-75139724085/
aws s3 cp --recursive --acl public-read ./www s3://udagram593666028033/
aws s3 cp --acl public-read --cache-control="max-age=0, no-cache, no-store, must-revalidate" ./www/index.html s3://udagram593666028033/

File diff suppressed because it is too large Load Diff

@ -7,7 +7,7 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"deploy": "npm install -f && npm run build && chmod +x bin/deploy.sh && bin/deploy.sh",
"deploy": "npm install -f && npm run build && sh ./bin/deploy.sh",
"test": "ng test --watch=false",
"lint": "ng lint",
"e2e": "ng e2e"

@ -5,7 +5,7 @@
export const environment = {
production: true,
appName: "Udagram",
apiHost: "http://localhost:8080/api/v0",
apiHost: "http://udagram-api-dev222.us-east-1.elasticbeanstalk.com/api/v0",
};
/*

@ -5,7 +5,7 @@
export const environment = {
production: false,
appName: 'Udagram',
apiHost: 'http://localhost:8080/api/v0'
apiHost: 'http://udagram-api-dev222.us-east-1.elasticbeanstalk.com/api/v0'
};
/*

Loading…
Cancel
Save