A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-03-31 23:53:47 -04:00
cmsmanage Set LOGIN_URL setting 2023-02-02 21:38:19 -05:00
membershipworks Fix some mypy typing issues 2023-02-02 22:33:32 -05:00
paperwork Add migration for Certification Version ordering 2023-03-31 23:53:47 -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-03-28 12:54:27 -04:00
pyproject.toml Bump dependencies 2023-03-28 12:54:27 -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