Skip to content

Commit

Permalink
Add data to access public DB
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosribas committed Jun 7, 2024
1 parent 67aa20b commit cf79ae3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion rnacentral/rnacentral/unit_test_local_settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File created to be used by GitHub Action during the execution of unit tests.
# File created to be used by GitLab during the execution of unit tests.
# This file is not used in production.

ENVIRONMENT = "DEV"
Expand All @@ -13,3 +13,15 @@
"REMOTE_SERVER": None,
},
}

# Public database
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": "pfmegrnargs",
"USER": "reader",
"PASSWORD": "NWDMCE5xdipIjRrp",
"HOST": "pgsql-hhvm-001.ebi.ac.uk", # inside campus
"PORT": "5432",
}
}

0 comments on commit cf79ae3

Please sign in to comment.