Régis Behmo
14684ef2ca
fix: docker build deprecation warnings
...
With the latest Docker upgrade, we got the following warnings during
build:
FromAsCasing: 'as' and 'FROM' keywords' casing do not match
LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format
2024-06-21 17:12:57 +02:00
Régis Behmo
790513e486
Merge pull request #74 from overhangio/redwood
...
Upgrade to Redwood
v18.0.0
2024-06-20 01:52:43 +02:00
Muhammad Faraz Maqsood
48c13d7105
v18.0.0
2024-06-20 01:51:37 +02:00
Muhammad Faraz Maqsood
e63be4fcc3
fix: wrong mime type by adding mime-support
...
The admin's stylesheets e.g.https://{{DISCOVERY_HOST}}/static/admin/css/base.css , were not loaded because its MIME type appears to be "text/plain", It should be "text/css".
2024-06-07 22:19:39 +05:00
Muhammad Faraz Maqsood
f4ccdf0f95
feat: upgrade to redwood
2024-06-07 22:19:39 +05:00
Overhang.IO
c692e75d17
Merge remote-tracking branch 'origin/master' into nightly
2024-06-04 07:37:10 +00:00
Muhammad Faraz Maqsood
c939b8a654
fix: readme correction
v17.0.1
2024-06-04 12:30:44 +05:00
Muhammad Faraz Maqsood
34691b58e2
docs: add a comment explaining the need of root user
...
=> [minimal 7/19] RUN echo "{}" > /openedx/config.yml 0.2s
=> ERROR [minimal 8/19] RUN git clone https://github.com/pyenv/pyenv /opt/pyenv --branch v2.3.36 --depth 1 0.4s
------
> importing cache manifest from docker.io/overhangio/openedx-discovery:17.0.0-nightly-cache:
------
------
> [minimal 8/19] RUN git clone https://github.com/pyenv/pyenv /opt/pyenv --branch v2.3.36 --depth 1:
0.341 fatal: could not create work tree dir '/opt/pyenv': Permission denied
------
Dockerfile:36
--------------------
34 | ENV PYENV_ROOT /opt/pyenv
35 | # USER root
36 | >>> RUN git clone https://github.com/pyenv/pyenv $PYENV_ROOT --branch v2.3.36 --depth 1
37 | # Install Python
38 | RUN $PYENV_ROOT/bin/pyenv install $PYTHON_VERSION
--------------------
ERROR: failed to solve: process "/bin/sh -c git clone https://github.com/pyenv/pyenv $PYENV_ROOT --branch v2.3.36 --depth 1" did not complete successfully: exit code: 128
2024-05-02 15:34:21 +05:00
Muhammad Faraz Maqsood
d27b7523e1
fix: fix compile messages error
...
ModuleNotFoundError: No module named '_sqlite3'
fixed above error on line
>>> RUN python manage.py compilemessages
2024-05-02 15:34:21 +05:00
Muhammad Faraz Maqsood
2f9effded9
add changelog entry
2024-05-02 15:34:21 +05:00
Muhammad Faraz Maqsood
213e4dbc0d
enhancement: upgrade python version to 3
...
.12.2
2024-05-02 15:34:21 +05:00
Muhammad Faraz Maqsood
96d6ba9ca2
v17.0.1
2024-04-25 11:58:24 +05:00
Andrés González
ecff88eb40
fix: Create media directory in Dockerfile.
...
If the media directory does not exist at the time that
uwsgi is launched, the mapping to /media to serve
media files will not be created.
2024-04-25 11:47:02 +05:00
Danyal-Faheem
4b1ccd4ea5
docs: fix site-configuration url
2024-04-25 11:43:03 +05:00
Muhammad Faraz Maqsood
1b1d90239d
remove extra changelog entry
2024-03-21 15:48:19 +05:00
Danyal-Faheem
b309e364fb
fix: add changelog entry
2024-03-19 17:56:21 +05:00
Danyal-Faheem
471bae22e8
ci: add python 3.12 checks
...
resolved merge conflicts
rebased this branch to overhangio master branch from edly-io master branch
2024-03-19 17:56:21 +05:00
Muhammad Faraz Maqsood
0034aaddb3
fix: fix volumes empty list error during tutor dev launch
2024-03-13 13:06:11 +05:00
Muhammad Faraz Maqsood
90abd11ca6
Revert "fix: fix empty volumes list"
...
This reverts commit 69c8ba5e9c49a7f085b6542612b4f2fc27432208.
2024-03-13 13:00:34 +05:00
Muhammad Faraz Maqsood
69c8ba5e9c
fix: fix empty volumes list
...
this error occurs during dev launch
2024-03-13 12:59:18 +05:00
Régis Behmo
a4fa65cf29
ci: fix auto-add-to-project typo
2024-03-12 11:42:36 +05:00
Max Sokolski
3ebf44e3d6
docs: add changelog entry
2024-03-11 16:50:39 +05:00
Max Sokolski
b3bc099364
feat: add mounts for docker-compose-dev-services
2024-03-11 16:50:39 +05:00
Régis Behmo
9b1fdd9773
ci: don't even try to auto-add PRs to github project
...
Auto-adding PRs to the Github project is not working because the
github-token is not available there.
2024-03-05 12:03:03 +05:00
Régis Behmo
98e226c501
ci: remove now useless OPENEDX_RELEASE variable
2024-02-20 15:15:40 +01:00
Régis Behmo
b8f6ad8c9c
fix: remove pkg_resources for compatibility with python 3.12
...
pkg_resources is a package that is unavailable in python 3.12, unless
setuptools is explicitely installed. Turns out, there are replacement
functions coming from importlib_resources, which can be obtained from
the importlib-resources pypi package. This package will be installed
with tutor starting from 17.0.2.
2024-02-12 11:57:51 +01:00
Régis Behmo
d451ab6425
ci: auto-add issues and items to github project
2024-01-12 12:33:35 +01:00
Muhammad Faraz Maqsood
74273e027f
doc: add instructions related to programs
...
close overhangio#42 as this is not an issue, updating readme in case of confusion.
2024-01-09 10:56:59 +05:00
Zia Fazal
52af6adb57
feat: upgrade to quince
v17.0.0
2023-12-11 18:12:10 +01:00
Overhang.IO
073fe08a04
Merge remote-tracking branch 'origin/master' into nightly
2023-12-09 18:15:12 +00:00
Régis Behmo
18cce706a7
v16.0.2
v16.0.2
2023-12-09 19:05:52 +01:00
Muhammad Faraz Maqsood
e30a78936d
fix: banner image base urls
...
close #46
2023-12-09 19:02:06 +01:00
Régis Behmo
7dc8b266b6
local.overhang.io -> local.edly.io
...
This is related to https://github.com/overhangio/tutor/issues/945
2023-12-09 15:54:28 +01:00
Overhang.IO
7e65b8b51a
Merge remote-tracking branch 'origin/master' into nightly
2023-12-08 18:46:42 +00:00
Emad Rad
5f964b0c6c
fix: dev dependency
2023-12-08 19:34:06 +01:00
Omar Al-Ithawi
e766c92c86
chore: use course-discovery openedx-atlas requirement
...
course-discovery now maintains its own base.in requirement for atlas
the tutor-discovery no longer needs to install it.
2023-12-08 11:00:30 +01:00
Overhang.IO
236b8c77e9
Merge remote-tracking branch 'origin/master' into nightly
2023-12-05 11:17:42 +00:00
Régis Behmo
03c43e084c
docs: docs.tutor.overhang.io -> docs.tutor.edly.io
...
See: https://github.com/overhangio/tutor/issues/945
2023-12-05 11:45:48 +01:00
Overhang.IO
829025ff26
Merge remote-tracking branch 'origin/master' into nightly
2023-11-24 03:49:54 +00:00
Emad Rad
0d9eb05ee5
chore: typo fixed
2023-11-24 08:39:38 +05:00
Emad Rad
0f9ac7f4d4
chore: cleanup
2023-11-24 08:39:38 +05:00
Emad Rad
e18fede815
fix: typing added
2023-11-24 08:39:38 +05:00
Emad Rad
ed0935da3d
ci: test action added
2023-11-24 08:39:38 +05:00
Emad Rad
71e988b3ee
feat: Makefile added
2023-11-24 08:39:38 +05:00
Emad Rad
962f796458
chore: changelog entry added
2023-11-24 08:39:38 +05:00
Overhang.IO
0adea6785e
Merge remote-tracking branch 'origin/master' into nightly
2023-11-21 10:40:21 +00:00
Muhammad Faraz Maqsood
8105cd9230
feat: introduce course discovery repository and version settings
2023-11-21 15:30:13 +05:00
Régis Behmo
902c223370
Merge branch 'master' into nightly
2023-11-20 17:46:41 +01:00
Régis Behmo
411a601ba9
feat: simplify nightly version management
...
By pulling the version suffix from tutor, we avoid git conflicts when
merging the release branch in nightly.
2023-11-20 17:39:47 +01:00
Overhang.IO
11f807de13
Merge remote-tracking branch 'origin/master' into nightly
2023-11-14 12:02:30 +00:00