Skip to content

kosarko/lindat-billing2

 
 

Repository files navigation

lindat-billing2

Run Local Docker

Create default debug user

Create scripts/create-debug-user.sh file that should contain SQL commands that e.g., create a user.

INSERT INTO users(email, password, first_name, last_name, is_admin, is_verified, is_active) VALUES('debugger', crypt('pass', gen_salt('bf')), 'Mr.', 'Debugger', TRUE, TRUE, TRUE);

Spin off docker containers

docker-compose up

Inspect lindat-billing using Local Docker

Login

Go to http://localhost:3021/ and use the credentials from above (if specified).

Rebuild after Dockerfile changes

docker-compose down --volumes
docker-compose build
docker-compose up

Inspect database

psql -h localhost -U billing billing

we use the fact that the default postgres port is mapped to the proper container.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 58.6%
  • HTML 30.3%
  • Shell 10.6%
  • Other 0.5%