A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-04-03 23:15:12 -04:00
cmsmanage Add doorcontrol app for managing HID door controllers 2023-04-03 16:15:20 -04:00
doorcontrol doorcontrol: Add annotations that decode the hex card number 2023-04-03 23:15:12 -04:00
membershipworks Optimize member autocomplete by using indexes and istartswith 2023-03-31 23:54:16 -04:00
paperwork paperwork: Add two stage definition/version selection in Certification admin 2023-04-01 11:37:49 -04:00
rentals rentals: Remove list editable fields Locker Info admin 2023-03-28 12:54:27 -04:00
static paperwork: Add a view to show shop leads issued certifications in their shops 2023-02-02 21:38:19 -05:00
tasks Apply new djlint version 2022-09-03 00:30:18 -04:00
templates Fix header toggle in base template 2023-02-02 21:38:19 -05:00
.gitignore Add /markdownx/ to gitignore 2022-02-14 16:27:59 -05:00
.pre-commit-config.yaml Bump pre-commit dependencies 2023-03-28 12:54:27 -04:00
manage.py Rename recmaint -> cmsmanage 2022-01-27 17:14:44 -05:00
pdm.lock Bump dependencies 2023-04-03 10:53:29 -04:00
pyproject.toml Bump dependencies 2023-04-03 10:53:29 -04:00
README.md Add a README and sample development settings file 2022-02-15 23:06:55 -05: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 ./manage.py migrate to create database tables
  5. (Optional) If you have access to the production server, you can use real data:
    1. pdm ./manage.py dumpdata -o whatever.json (on the server)
    2. pdm ./manage.py loaddata whatever.json (on your machine)
  6. Run pdm ./manage.py createsuperuser to make a user
  7. Run pdm ./manage.py runserver to start the server