A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-02-03 18:34:27 -05: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 paperwork: Make mailing list addresses in department cert view clickable 2023-02-03 18:34:27 -05:00
rentals Add type checking, fix some minor typing issues 2022-12-13 13:31:22 -05: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 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 Fix some mypy typing issues 2023-02-02 22:33:32 -05:00
pyproject.toml Fix some mypy typing issues 2023-02-02 22:33:32 -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