671 B
671 B
CMS Management
A management site for the Claremont MakerSpace
Development
- Get Python 3.9 and PDM
- Run
pdm install
- Copy
./cmsmanage/settings/dev.sample.py
to./cmsmanage/settings/dev.py
- Run
pdm run ./manage.py migrate
to create database tables - (Optional) If you have access to the production server, you can use real data:
pdm run ./manage.py dumpdata -o whatever.json
(on the server)pdm run ./manage.py loaddata whatever.json
(on your machine)
- Run
pdm run ./manage.py createsuperuser
to make a user - Run
pdm run ./manage.py runserver
to start the server