Django-based Web interface to a pychron db
#Quick Start
- install docker
- install docker-compose
- clone repository
git clone https://github.com/NMGRL/pychron_web cd pychron_web
- edit
.env.production
- build the docker container
docker-compose build
- startup the server
docker-compose up -d
- migrate the database
docker-compose exec web python manage.py migrate samples 0001 --fake docker-compose exec web python manage.py migrate
- create a superuser
docker-compose exec web python manage.py createsuperuser
- Open a browser at
http://localhost:8000/samples/
#MSSQL Support To use a SQL Server database
- set DATABASE_KIND=mssql in your .env.production file
- use
shell docker-compose build -f DockerfileMSSQL
in step #5 instead