mirror of
https://github.com/decompme/decomp.me.git
synced 2026-04-26 08:58:33 -05:00
2e96373ac7
* add projects list * new project page * mypy * allow '.' in github identifiers * implement project create * project settings * disallow anons from being project members * uploadable project icon * docker attempt * fix tests * add tests * add description form * refactor to add useEntity and FieldSet * move FieldSet out of subdirectory * use same page for project tabs * scroll up to UnderlineNav when tab changes * stylelint * configure vscode mypy extension * mypy * fix mypy and dmypy dmypy does not support follow_imports=silent. Instead we explicitly disable most checks for asm_differ and m2c, which has the same effect * remove redundant mypy flags * FieldSet style tweaks * give UnderlineNav horiz padding * fix swr mutate of project header * few tweaks to help docker (#550) * eth changes * use POST/DELETE rather than PUT for project members * add migration * fix pr creation * simplify project platform derivation Co-authored-by: Mark Street <22226349+mkst@users.noreply.github.com> Co-authored-by: Ethan Roseman <ethteck@gmail.com>
9 lines
311 B
Bash
9 lines
311 B
Bash
DATABASE_URL=psql://decompme:decompme@postgres:5432/decompme
|
|
SECRET_KEY="django-insecure-nm#!8%z$$hc0wwi#m_*l9l)=m*6gs4&o_^-e5b5vj*k05&yaqc1"
|
|
DEBUG="on"
|
|
ALLOWED_HOSTS="backend,localhost,127.0.0.1"
|
|
USE_SANDBOX_JAIL="on"
|
|
SANDBOX_DISABLE_PROC="true"
|
|
COMPILER_BASE_PATH=/compilers
|
|
MEDIA_URL=http://localhost/media/
|