A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-12-20 13:04:56 -05:00
cmsmanage Remove separate database for doorcontrol app 2023-11-29 17:28:41 -05:00
dashboard
doorcontrol doorcontrol: Improve responsiveness of form controls and table in reports 2023-12-06 21:53:59 -05:00
membershipworks membershipworks: Add methods to get event listing and events by eid/url 2023-12-20 13:04:56 -05:00
paperwork membershipworks: Sync initial migration to current state of database 2023-12-20 12:47:46 -05:00
rentals Always show admin facet counts in most models with filters 2023-12-04 13:09:13 -05:00
static Bump tabulator to v5.5.2 2023-09-26 23:27:31 -04:00
tasks
templates Make the login page look a bit better by adding some white space 2023-11-06 13:14:56 -05:00
.gitignore
.pre-commit-config.yaml Bump pre-commit dependencies 2023-11-29 17:28:41 -05:00
manage.py
pdm.lock Update django to 5.0 2023-12-04 11:38:32 -05:00
pdm.toml
pyproject.toml Update django to 5.0 2023-12-04 11:38:32 -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