A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
Adam Goldsmith aad6bb80c2
All checks were successful
Ruff / ruff (push) Successful in 39s
Test / test (push) Successful in 4m3s
paperwork: Improve style in certification PDFs for Vector 2022 MW skin
2024-06-19 02:20:45 -04:00
.gitea/workflows Convert settings to use django-configurations 2024-05-03 12:37:48 -04:00
cmsmanage Disable django-debug-toolbar when running tests 2024-06-07 09:36:49 -04:00
dashboard dashboard: Add fragment with links to some misc external apps 2024-03-15 23:38:22 -04:00
doorcontrol doorcontrol: Grant instructors access for ~1 hour around their class times 2024-06-07 09:42:40 -04:00
membershipworks membershipworks: Show non-member ticket count in event registrations view 2024-06-18 17:49:11 -04:00
paperwork paperwork: Improve style in certification PDFs for Vector 2022 MW skin 2024-06-19 02:20:45 -04:00
rentals Apply ruff lint rule DJ012 for model internals ordering 2024-06-07 09:36:49 -04:00
static Bump bootstrap to v5.3.3 2024-02-28 11:31:00 -05:00
tasks Apply ruff lint rule DJ012 for model internals ordering 2024-06-07 09:36:49 -04:00
templates Don't show navbar when printing 2024-06-18 15:10:51 -04:00
.gitignore Convert settings to use django-configurations 2024-05-03 12:37:48 -04:00
.pre-commit-config.yaml Bump dependencies 2024-05-03 12:37:48 -04:00
manage.py Convert settings to use django-configurations 2024-05-03 12:37:48 -04:00
pdm.lock Bump dependencies 2024-06-07 09:36:49 -04:00
pdm.toml Use compatible version save strategy in PDM 2023-06-21 14:09:00 -04:00
pyproject.toml Apply ruff lint rule DJ012 for model internals ordering 2024-06-07 09:36:49 -04:00
README.md Fix setup commands in README 2023-11-29 17:28:41 -05:00
renovate.json Add renovate.json 2023-11-19 04:20:05 +00:00

CMS Management

A management site for the Claremont MakerSpace

Development

  1. Get Python 3.9 and PDM
  2. Run pdm install
  3. Copy ./cmsmanage/settings/dev.sample.py to ./cmsmanage/settings/dev.py
  4. Run pdm run ./manage.py migrate to create database tables
  5. (Optional) If you have access to the production server, you can use real data:
    1. pdm run ./manage.py dumpdata -o whatever.json (on the server)
    2. pdm run ./manage.py loaddata whatever.json (on your machine)
  6. Run pdm run ./manage.py createsuperuser to make a user
  7. Run pdm run ./manage.py runserver to start the server