Skip to content

serviceboard/getting-started

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting started with Serviceboard

Prerequisites

  • bash
  • docker
  • docker-compose
  • serviceboard docker images:
docker load --input backend-v1.0.0.tar.gz
docker load --input frontend-v1.0.0.tar.gz

Configuration

  • Create .env file (use example.env as template)
  • Generate secret keys (once) and put them into .env
for secret in  SECRET_KEY_BASE JWT_SECRET_KEY SETTINGS_SECRET_KEY INTEGRATIONS_SECRET_KEY
do
 echo $secret=$(openssl rand -hex 64)
done

Run

  • DB initialization
docker compose run --rm db-init 
  • Start Serviceboard
docker compose up  -d

Application should be available at http://localhost:8080 and API at http://localhost:3000/api/v1, default user/pass: admin/admin123

to change admin password start Rails console:

docker compose run backend bundle exec rails c

then run inside rails console

User.find_by(uid: "admin", provider: "local").update(password: "new_password")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published