A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-01-19 18:46:15 -05:00
cmsmanage Implement some basic API access for paperwork and membershipworks 2022-12-25 01:21:30 -05:00
membershipworks membershipworks: Use django functions to sanitize Member mailbox 2023-01-19 14:39:30 -05:00
paperwork paperwork: Remove mailing_list field from CertificationDefinition 2023-01-19 18:46:15 -05:00
rentals Add type checking, fix some minor typing issues 2022-12-13 13:31:22 -05:00
tasks Apply new djlint version 2022-09-03 00:30:18 -04:00
templates Use POST for logout, as GET is deprecated as of Django 4.1 2022-09-03 00:38:44 -04:00
.gitignore Add /markdownx/ to gitignore 2022-02-14 16:27:59 -05:00
.pre-commit-config.yaml Bump djLint to 1.19.6 to fix whitespace issue 2022-11-08 12:02:45 -05:00
manage.py Rename recmaint -> cmsmanage 2022-01-27 17:14:44 -05:00
pdm.lock Add Django REST Framework 2022-12-23 20:36:24 -05:00
pyproject.toml Add Django REST Framework 2022-12-23 20:36:24 -05: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