A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
Adam Goldsmith d4670a7d02
All checks were successful
Ruff / ruff (push) Successful in 23s
doorcontrol: Add unique member count to "busiest..." reports
2024-02-09 12:20:32 -05:00
.gitea/workflows Add Gitea action to check ruff linting/formatting 2024-01-19 15:04:08 -05:00
cmsmanage membershipworks: Add waiver and Instructor/Vendor reports 2024-02-07 00:27:07 -05:00
dashboard dashboard: Add more flexible Link Card dashboard fragment 2024-02-06 00:42:14 -05:00
doorcontrol doorcontrol: Add unique member count to "busiest..." reports 2024-02-09 12:20:32 -05:00
membershipworks membershipworks: Add changelist action to sync UCS accounts 2024-02-08 15:45:02 -05:00
paperwork paperwork: Fix CertificationVersion is_latest/is_current when filtered 2024-02-07 21:30:28 -05:00
rentals dashboard: Add more flexible Link Card dashboard fragment 2024-02-06 00:42:14 -05:00
static Bump tabulator to v5.5.2 2023-09-26 23:27:31 -04:00
tasks Switch from Black to Ruff for formatting, add linting/import sorting 2024-01-18 14:21:36 -05:00
templates Set bootstrap color mode to auto by default and load script early 2024-01-30 13:34:04 -05:00
.gitignore Add /markdownx/ to gitignore 2022-02-14 16:27:59 -05:00
.pre-commit-config.yaml Bump dependencies 2024-02-02 01:25:54 -05:00
manage.py Rename recmaint -> cmsmanage 2022-01-27 17:14:44 -05:00
pdm.lock membershipworks: Add waiver and Instructor/Vendor reports 2024-02-07 00:27:07 -05:00
pdm.toml Use compatible version save strategy in PDM 2023-06-21 14:09:00 -04:00
pyproject.toml membershipworks: Add waiver and Instructor/Vendor reports 2024-02-07 00:27:07 -05: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