Régis Behmo
02a7bd5cbc
No automated formatting for templates
2019-06-03 15:41:25 +02:00
Régis Behmo
a6c434689c
Fix integration with new script interface
2019-05-29 11:20:52 +02:00
Régis Behmo
58d2af30a0
Minor formatting
2019-05-29 11:20:37 +02:00
Régis Behmo
d8bea87a2f
Fix autocomplete for some commands
...
Auto-completing commands that were imported with `name=...` option was
incorrect.
2019-05-29 10:31:53 +02:00
Régis Behmo
307398a306
Add link to youtube video in README
...
Github does not support embedded videos in README, so we need to
directly link to the video on youtube.
2019-05-29 10:31:53 +02:00
Régis Behmo
f251b7b413
Minor docker-compose.yml template improvements
2019-05-29 10:31:53 +02:00
Régis Behmo
b5f51687a7
Add -y/--yes
option to local quickstart
2019-05-29 10:31:53 +02:00
Régis Behmo
ebcb08b5eb
Fix save/render for single files
2019-05-29 10:31:53 +02:00
Régis Behmo
0093198864
Refactor scripts running
...
Instead of passing a `run_func` argument, which is clumsy, we create a
BaseRunner from which local and k8s runners can inherit.
2019-05-29 09:53:54 +02:00
Régis Behmo
65dce18908
Add TUTOR_VERSION to template variables
2019-05-29 09:53:54 +02:00
Régis Behmo
0199a1e916
Add convenient fmt.echo_* functions
2019-05-29 09:53:54 +02:00
Régis Behmo
407659ff06
Major refactoring of config module
...
Configuration loading was overly complex. Here, we simplify it
drastically with reasonable defaults. Hacky additional variables are
unncessary now that we use custom jinja2 filters.
2019-05-29 09:53:54 +02:00
Régis Behmo
754da2f06f
Move command modules to dedicated directory
2019-05-29 09:53:54 +02:00
Régis Behmo
09d7b49628
Minor scripts.py refactoring/renaming
2019-05-29 09:53:54 +02:00
Régis Behmo
68d23c5dd5
Env module refactoring
...
Better naming and tests.
2019-05-29 09:53:54 +02:00
Régis Behmo
a97453135e
Blackify tests, too
2019-05-29 09:53:54 +02:00
Régis Behmo
badb28b361
Better mysql initialization
...
For initializing the mysql database, we now run the mysql client from
the mysql container. That means that the mysql client is no longer
required in the openedx container, as previously suggested in PR #209 .
2019-05-29 09:53:54 +02:00
Régis Behmo
3362308ad3
Improve lms/cms logging
...
- deduplicate stdout logs
- don't persist celery logs
- persist logs to all.log by default
2019-05-29 09:53:15 +02:00
Silvio Tomatis
b79cd1799b
Make it possible to persist lms/cms logs to files
...
By symlinking /dev/stdout to a .log file, we make it possible for users
to manually persist lms/cms logs to a file.
2019-05-29 09:53:15 +02:00
Régis Behmo
04893981b7
Add github template for questions
2019-05-23 12:59:18 +02:00
Régis Behmo
ea6c276b69
Add missing quotes in documentation
2019-05-22 20:03:46 +02:00
Régis Behmo
f11f47f9f0
Fix installing a locally cloned requirement repository
...
When running `pip install -r /path/to/x.txt`, relative paths listed in
x.txt are supposed to be relative to the current folder, and not the
x.txt folder. This results in an error during `pip install`:
./xblock-poll/ should either be a path to a local project or a VCS
url beginning with svn+, git+, hg+, or bzr+
This error was first reported here:
https://discuss.overhang.io/t/installing-custom-xblock/61
2019-05-22 20:03:46 +02:00
Régis Behmo
0a49c2422a
Add --no-cache
option to images build
2019-05-22 19:17:54 +02:00
Régis Behmo
4e98b020db
Include lighting talk video in docs
2019-05-20 18:38:43 +02:00
Régis Behmo
2234510cfb
Make it possible to configure the notes service hostname
...
This is important, in particular in development.
2019-05-15 10:52:45 +02:00
Régis Behmo
79ad1871d2
v3.3.10 (2019-05-15)
...
- [Bugfix] Fix boolean configuration choices
2019-05-15 10:33:29 +02:00
Régis Behmo
71ee7bc980
Fix boolean configuration choices
...
Since the ask_bool refactoring, boolean choices were no longer taken
into account during interactive configuration.
2019-05-15 10:19:51 +02:00
Régis Behmo
e1c5ea4e3e
v3.3.9 (2019-05-13)
...
- [Improvement] Add `local exec` command for running commands inside
existing containers
- [Bugfix] Fix triple display of courses in LMS search (upstream patch,
2019-05-13 17:28:23 +02:00
Régis Behmo
9e6a387adc
Document how to migrate a local platform to a different server
...
Close #186 .
2019-05-13 17:26:39 +02:00
Régis Behmo
c9ad618132
Add basic contribution guidelines
2019-05-13 16:52:03 +02:00
Régis Behmo
cac0fb8404
Update issue templates
2019-05-13 16:41:34 +02:00
Régis Behmo
b4e3c43902
Better documentation
...
- More concise table of contents
- New intro
- Simpler make commands
- Fix a couple typos here and there
- Get rid of the default github issue template, and start using the
template created online.
2019-05-13 16:34:17 +02:00
Régis Behmo
4f9bb7d752
Add local exec
command
2019-05-05 12:30:20 +02:00
Régis Behmo
6196defa8b
Simplify CI install/testing
2019-05-05 12:30:20 +02:00
Régis Behmo
f2f714ad23
Run code formatting on the entire code base
2019-05-05 12:30:20 +02:00
Régis Behmo
4ac7dff06a
Switch from nose to unittest for running tests
...
This harmonizes test running between CI and local development.
2019-05-05 12:30:20 +02:00
Régis Behmo
9dd4c26706
Introduce automatic code formatting/linting
...
Code formatting makes sure that the python code looks decent, but it
does not check for coding errors.
https://black.readthedocs.io/en/stable/
Code linting runs static error detection on the python code, but does
not bother about formatting: https://pylint.readthedocs.io/en/latest/
2019-05-05 12:30:20 +02:00
Régis Behmo
52c80631c6
Document CLI auto-complete
2019-05-03 07:55:21 +02:00
Silvio Tomatis
4b6e6bcbf7
Do not require bash to be installed in docker containers.
...
Tutor is not using any bash-specific feature.
This commit changes (almost) all invocations to /bin/bash replacing them with
/bin/sh. It allows building a docker image that does not bundle bash in it.
The file k8s.py still has a bash invocation, to make sure this change does not
impact functionality for any user.
2019-05-03 07:25:49 +02:00
Régis Behmo
ce03d5fe4a
Adjust the number of gunicorn workers
...
Given that each gunicorn worker uses ~200-250Mb virtual memory, we should
really avoid running too many of them. Here, we reduce the default
number of workers to 2. For the LMS and the CMS, this number can be
adjusted by setting an environment variable GUNICORN_WORKERS.
This is related to #207 .
2019-05-02 09:17:00 +02:00
Régis Behmo
25d1d38f85
Fix triple course display in LMS search dashboard
...
Apply upstream patch from https://github.com/edx/edx-platform/pull/20325/
Close #189 .
2019-04-29 19:41:53 +02:00
Régis Behmo
34789273e6
v3.3.8 (2019-04-28)
...
- [Bugfix] Reduce the number of gunicorn workers to address RAM usage (#207 )
2019-04-28 09:35:51 +02:00
Régis Behmo
31efc550c3
Less gunicorn workers for less RAM usage
...
Settings the number of workers for the LMS and the CMS to 2*|CPU|+1
results in 4*|CPU]+2 gunicorn workers, which is too much for a laptop to
cope with.
Close #207
2019-04-28 09:34:02 +02:00
Régis Behmo
1d6dc5f609
v3.3.7 (2019-04-28)
...
- [Bugfix] Fix "Timeout after 20s" on running migrations
2019-04-28 08:31:43 +02:00
Régis Behmo
92d7e7c418
Fix running migrations
...
Migrations were being done on openedx-assets, which does not depend on
mysql. As a consequence, the mysql container was not being created on
"migrate" and migrations were failing with "Timeout after 20s".
2019-04-28 08:26:45 +02:00
Régis Behmo
acbd5ae371
Test interactive configuration in travis-ci
...
With this test we would have realised earlier there was a bug with
config defaults.
2019-04-27 10:58:43 +02:00
Régis Behmo
a2241a07c6
v3.3.6 (2019-04-27)
...
- [Bugfix] Fix KeyError on first quickstart
- [Improvement] De-duplication of prod/dev settings. Thanks @silviot! 😺
2019-04-27 10:49:45 +02:00
Régis Behmo
2b872c9b82
Fix KeyError on first quickstart
...
When a config.yml file does not exist, interactive configuration crashes
with a KeyError on ACTIVATE_HTTPS.
2019-04-27 10:41:34 +02:00
Régis Behmo
24cba3f106
Fix gunicorn config option
2019-04-25 22:26:56 +02:00
Régis Behmo
d5942d538f
Fix image building following small refactoring
2019-04-25 21:58:06 +02:00