reactivated 0.41.0-a2452 → 0.41.0-a2456

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactivated",
3
- "version": "0.41.0-a2452",
3
+ "version": "0.41.0-a2456",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,6 +20,13 @@ export PGDATABASE="database"
20
20
  export PGHOST=$TMP_ENV
21
21
  EXTERNAL_PID="$TMP_ENV/postmaster.pid"
22
22
 
23
+ settings_file="server/settings/__init__.py"
24
+
25
+ # Temporary fix with Nix issues.
26
+ if [ ! -f "$settings_file" ]; then
27
+ ln -s localhost.py "$settings_file"
28
+ fi
29
+
23
30
  if [ ! -d "$VIRTUAL_ENV" ]; then
24
31
  if [ -f "$EXTERNAL_PID" ]; then
25
32
  kill -9 "$(cat "$EXTERNAL_PID")"