https://github.com/ccnmtl/plexus
https://github.com/ccnmtl/plexus
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ccnmtl/plexus
- Owner: ccnmtl
- License: other
- Created: 2014-07-01T13:41:52.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2025-04-11T18:21:58.000Z (about 1 year ago)
- Last Synced: 2025-04-11T19:38:53.336Z (about 1 year ago)
- Language: HTML
- Homepage: https://plexus.ctl.columbia.edu/
- Size: 55.4 MB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/ccnmtl/plexus/actions)
## plexus
Our little in-house app for keeping track of our servers.
### docker-compose
The easiest way to run this locally is with docker and
docker-compose. It's as easy as:
$ make build
$ docker-compose run web migrate # to set up database schema
$ docker-compose up
And you should have a dev instance running on port 8000.
If you update the dependencies (in `requirements.txt` or
`package.json`), re-run `make build` to update the docker image.
You can re-run `docker-compose run web migrate` at any point if there
are migrations.
If you aren't using CAS, you'll want a local django superuser, so
create it with:
$ docker-compose run web manage createsuperuser