Skip to content
Snippets Groups Projects
Commit c4b4bd25 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.2.

parents 46ccbd2d 276bdbbe
No related branches found
Tags 0.2
No related merge requests found
# Changelog
## [0.2] - 2025-01-09
- Updated the setting related to the MEDIA ROOT and URL and also the CSRF settings
## [0.1] - 2025-01-08
- initial release
......@@ -127,3 +127,8 @@ STATIC_ROOT = os.getenv("STATIC_ROOT", BASE_DIR / "staticfiles")
STATICFILES_DIRS = [
BASE_DIR / "static",
]
MEDIA_ROOT = os.getenv("MEDIA_ROOT", BASE_DIR / "media")
MEDIA_URL = '/media/'
CSRF_TRUSTED_ORIGINS = os.getenv("CSRF_TRUSTED_ORIGINS", "").split(",")
......@@ -3,7 +3,7 @@ from setuptools import find_packages, setup
setup(
name="sage-validation",
version="0.1",
version="0.2",
packages=find_packages(),
include_package_data=True,
install_requires=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment