A management site for the Claremont MakerSpace https://manage.claremontmakerspace.org/
Go to file
2023-02-02 18:49:50 -05:00
cmsmanage Switch to local static copies of bootstrap JS/CSS 2023-02-02 18:49:50 -05:00
membershipworks Minor fixes/optimizations for API endpoints 2023-01-23 21:12:00 -05:00
paperwork paperwork: Migrate to newer semver construction methods 2023-02-02 18:49:50 -05:00
rentals Add type checking, fix some minor typing issues 2022-12-13 13:31:22 -05:00
static Switch to local static copies of bootstrap JS/CSS 2023-02-02 18:49:50 -05:00
tasks Apply new djlint version 2022-09-03 00:30:18 -04:00
templates Switch to local static copies of bootstrap JS/CSS 2023-02-02 18:49:50 -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 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