Skip to content

Commit

Permalink
Merge pull request #74 from FDA/origin/Sep2022
Browse files Browse the repository at this point in the history
August 2022 Update
  • Loading branch information
lorenbuhle authored Sep 7, 2022
2 parents 0f4204b + c82dd35 commit d0d985a
Show file tree
Hide file tree
Showing 1,544 changed files with 245,620 additions and 6,657 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.gems/
.git/
.idea/
log/
tmp/
# exclude subfolders with given name on any level
**/node_modules
**/dist
28 changes: 28 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
HOST=https://localhost:3000
RAILS_LOG_TO_STDOUT=false
MAX_TIME_INACTIVITY=20000000
SESSIONS_LIMIT=5
NO_FIPS=1

ADMIN_TOKEN=
CHALLENGE_BOT_TOKEN=

RECAPTCHA_SITE_TEST_KEY=
RECAPTCHA_SECRET_TEST_KEY=

BILLING_CONFIRMATION=

# this is needed for delivering emails through the Salesforce
SALESFORCE_USERNAME=
SALESFORCE_PASSWORD=
SALESFORCE_SECRET_TOKEN=
SALESFORCE_HOST=
SALESFORCE_FDA_EMAIL_ID=
SALESFORCE_NOTIFIER_EMAIL_ID=

REDIS_WORKER_URL=

# Org for site admins
PFDA_ADMIN_ORG=

HTTPS_APPS_API_URL=https://localhost:3001
82 changes: 57 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,47 +11,79 @@
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore database config
/config/database.yml

# Ignore Rspec code coverage data
/coverage/*

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
/tmp
!/tmp/.keep
*.swp

# Ignore uploaded files in development
/storage/*
!/storage/.keep

/node_modules
yarn-error.log

# Ignore generated assets
/public/assets

#Ignore generated node modules
/node_modules
.byebug_history

# Ignore master key for decrypting credentials and more.
/config/master.key

# Ignore deployed gems
/vendor/bundle

# Ignore CSV in assets
/app/assets/csv

# Ignore OSX hidden file
.DS_Store

.gems/

# Ignore local environment
.env

# Ignore IDE files
.idea/

# Ignore application configuration
/config/application.yml
/public/FISMA_docs/2018_FDA_OC_PrecisionFDA\ Decision\ Memo.pdf
/config/initializers/globals.rb
/config/initializers/fips.rb
/config/database.yml.ci
app/assets/images/presskit
app/assets/images/participants
app/assets/images/misc
app/assets/images/logo-*
app/assets/images/precisionFDA*
app/assets/images/ubuntu-1*
scripts/jenkins_entrypoint.sh
app/assets/images/docs/site_administration
app/assets/images/docs/verification_spaces
app/assets/images/docs/review_spaces
app/assets/images/docs/site_customization
app/assets/images/docs/challenge_workbench
app/assets/images/challenges
app/assets/images/docs/users_and_usage.png
app/assets/images/docs/site_activity_reporting.png

# Ignore client node_modules
/client/node_modules
/client/coverage
/app/assets/packs

# Ignore local scripts
run-ui-test.sh

# Foreman's Procfile
/Procfile

###### nodejs server
dist/
# mikro-orm metadata provider helper
temp/
/https-apps-api/test-emails/*
!/https-apps-api/test-emails/.gitkeep

*.tsbuildinfo
node_modules/

lerna-debug.log

cert.pem
key.pem

vendor/cache

# Commented out, as docker-compose symlink expected
# More on the topic in the docs
docker/docker-compose.yml
Empty file added .prettierignore
Empty file.
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--require spec_helper
--require rails_helper
Loading

0 comments on commit d0d985a

Please sign in to comment.