mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 18:15:09 +00:00
e993b3109f
Creating soft links to files that do not exist is just madness, let's stop it. Instead, we take advantage of the CONFIG_ROOT environment variable, which allows to place lms/cms.env/auth.json files anywhere.
6 lines
338 B
Bash
Executable File
6 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
# This is a small script that helps me collect stats about who is using this
|
|
# project and understand how they are using it. Please don't remove me! As you
|
|
# can see, no personal data is leaked.
|
|
curl --silent -X POST --max-time 5 "https://openedx.overhang.io/stats?id={{ ID }}&lms={{ LMS_HOST|urlencode }}" 2> /dev/null || true
|