A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-11-29 17:28:41 -05:00
cmsmanage Report django_q2 errors to admins by email 2023-11-14 13:53:17 -05:00
dashboard Add a dashboard for showing relevant links and apps to users 2023-04-14 01:30:42 -04:00
doorcontrol doorcontrol: Add property on Door model to get associated DoorController 2023-11-14 12:53:15 -05:00
membershipworks Re-apply Black formatting 2023-09-07 10:56:22 -04:00
paperwork paperwork: Fix sending certification emails when shop lead flag not set 2023-09-26 23:27:31 -04:00
rentals Re-apply Black formatting 2023-09-07 10:56:22 -04:00
static Bump tabulator to v5.5.2 2023-09-26 23:27:31 -04:00
tasks Re-apply Black formatting 2023-09-07 10:56:22 -04:00
templates Make the login page look a bit better by adding some white space 2023-11-06 13:14:56 -05:00
.gitignore Add /markdownx/ to gitignore 2022-02-14 16:27:59 -05:00
.pre-commit-config.yaml Update pre-commit hooks 2023-09-07 10:57:02 -04:00
manage.py Rename recmaint -> cmsmanage 2022-01-27 17:14:44 -05:00
pdm.lock Bump dependencies 2023-11-29 17:28:41 -05:00
pdm.toml Use compatible version save strategy in PDM 2023-06-21 14:09:00 -04:00
pyproject.toml Bump dependencies 2023-11-29 17:28:41 -05:00
README.md Add a README and sample development settings file 2022-02-15 23:06:55 -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 ./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