Skip to content

Commit

Permalink
Merge pull request PyAr#81 from PyAr/update_prod_settings
Browse files Browse the repository at this point in the history
update prod settings
  • Loading branch information
facundobatista authored May 30, 2019
2 parents eef8aef + 8e0bfb2 commit e35e1ea
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions website/website/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ class Prod(Base):
'url_wsfev1': "https://servicios1.afip.gov.ar/wsfev1/service.asmx?WSDL",
'selling_point': 7,
'cuit': 30715639129,
'auth_cert_path': '/tmp/afip_pyar.crt',
'auth_key_path': '/tmp/afip_pyar.key',
'auth_cert_path': '/etc/secrets/afip_pyar.crt',
'auth_key_path': '/etc/secrets/afip_pyar.key',
}

DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
Expand All @@ -268,3 +268,10 @@ class Prod(Base):
dsn=os.environ.get('SENTRY_DSN'),
integrations=[DjangoIntegration()]
)

INVOICES_GDRIVE = {
'credentials_filepath': "/etc/secrets/gdrive.json",
# "Factura Socies"
# https://drive.google.com/drive/u/1/folders/1V2z4ww1B1yNdkO0yxkah45FX7sZvt961
'folder_id': "1V2z4ww1B1yNdkO0yxkah45FX7sZvt961",
}

0 comments on commit e35e1ea

Please sign in to comment.