Skip to content

Commit

Permalink
Fixing doc yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
open-risk committed Feb 25, 2024
1 parent b476223 commit 3a3c57f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 29 deletions.
36 changes: 20 additions & 16 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
# .readthedocs.yaml
# Read the Docs configuration file
# Read the Docs configuration file for Sphinx projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
# Set the OS, Python version and other tools you might need
build:
os: ubuntu-20.04
os: ubuntu-22.04
tools:
python: "3.7"
python: "3.10"
# You can also specify other tool versions:
# nodejs: "16"
# rust: "1.55"
# golang: "1.17"
apt_packages:
- gdal-bin
# nodejs: "20"
# rust: "1.70"
# golang: "1.20"

# Build documentation in the docs/ directory with Sphinx
# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/source/conf.py
configuration: docs/source/conf.py
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
# builder: "dirhtml"
# Fail on all warnings to avoid broken references
# fail_on_warning: true

# If using Sphinx, optionally build your docs in additional formats such as PDF
# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - pdf
# - epub

# Optionally declare the Python requirements required to build your docs
# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: requirements.txt
- requirements: requirements.txt
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ChangeLog
ChangeLog
===========================

This is the Changelog for the overall Equinox platform and its API changes. Individual apps may have their own more detailed changelogs within the app subdirectory
Expand Down Expand Up @@ -44,7 +44,7 @@ v0.3.2 (31-03-2022)

v0.3.14 (14-03-2022)
--------------------
* Pi Day pre-release
* Pi-Day pre-release
* PCAF for Mortgages

v0.3 (01-03-2022)
Expand Down
20 changes: 10 additions & 10 deletions equinox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,18 @@
WSGI_APPLICATION = 'equinox.wsgi.application'

DATABASES = {
# 'default': {
# "ENGINE": "django.contrib.gis.db.backends.spatialite",
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
# }
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'equinox',
'USER': 'equinoxuser',
'PASSWORD': 'equinoxuser',
'HOST': 'localhost',
'PORT': '5433',
"ENGINE": "django.contrib.gis.db.backends.spatialite",
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
# 'default': {
# 'ENGINE': 'django.contrib.gis.db.backends.postgis',
# 'NAME': 'equinox',
# 'USER': 'equinoxuser',
# 'PASSWORD': 'equinoxuser',
# 'HOST': 'localhost',
# 'PORT': '5433',
# }
}
SPATIALITE_LIBRARY_PATH = 'mod_spatialite.so'

Expand Down
2 changes: 1 addition & 1 deletion start/templates/start/front.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h4>User Functionality</h4>

<div class="card-body">
<ul>
<li>A user can log-in into the application with their credentials</li>
<li>A user can log in into the application with their credentials</li>
<li>Inspect available data sets (tables or relations) that capture the EBA / EP / PCAF / GHG Protocol Data requirements, including a variety of relevant reference data available as Open Data</li>
<li>Insert, Update or Delete records (e.g. new Project Data)</li>
<li>Consult the documentation as to the meaning and requirements of each data element</li>
Expand Down

0 comments on commit 3a3c57f

Please sign in to comment.