Cross-functional skill tracking system for Agile teams. 🌟
Required packages:
- git
- Docker
- docker-compose
git clone https://github.com/savoirfairelinux/starlight.git
cd starlight
cp .env.json.example .env.json
docker-compose up --build
Visit localhost:8000 in your browser
- Create a super user for admin access
docker-compose run --rm web python3 manage.py createsuperuser
- Load fixture data
docker-compose run --rm web python3 manage.py loaddata starlight/fixtures/fixtures.json
-
Develop
-
Apply migrations
docker-compose run --rm web python3 manage.py makemigrations
docker-compose run --rm web python3 manage.py migrate
From the root directory, execute:
tox