A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2022-11-07 12:49:12 -05:00
cmsmanage Add Database Access group 2022-07-28 20:46:37 -04:00
membershipworks [rentals] Use django-autocomplete-light for locker renter selection 2022-05-05 17:23:36 -04:00
paperwork [paperwork] Remove separate Certification Versions admin page 2022-11-07 11:31:44 -05:00
rentals Use djlint for js and css 2022-11-07 12:49:12 -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
.pdm.toml Switch from Pipenv to PDM 2022-02-12 00:03:11 -05:00
.pre-commit-config.yaml Bump dependencies 2022-11-07 11:44:34 -05:00
manage.py Rename recmaint -> cmsmanage 2022-01-27 17:14:44 -05:00
pdm.lock Bump dependencies 2022-11-07 11:44:34 -05:00
pyproject.toml Use djlint for js and css 2022-11-07 12:49:12 -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