Copyright (C) 2021 Dominik Lovetinsky, Philipp Maschayechi - This project is licenced under the Apache-Licence
This project aims at simulating a bionic robotic hand at as many degrees of freedom as possible. In this source code, there is also the functionality of registration embedded as well as a blog functionality.
One thing you must consider when cloning this git repository is, that you have to add an application.properties
file
at src/main/resources/
with the following lines inserted:
# creates SPRING_SESSION db
spring.session.store-type=jdbc
spring.session.jdbc.initialize-schema=always
# setup PostgreSQL Database
spring.datasource.url=jdbc:postgresql://localhost:3406/binobo_db
spring.datasource.username=postgres
spring.datasource.password=<your-root-pw>
spring.jpa.hibernate.ddl-auto=update
# this can be set to false
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL92Dialect
# mail config for email-verification
# here you can also change this to any other smtp server
spring.mail.host=smtp.gmail.com
spring.mail.port=587
spring.mail.username[email protected]
spring.mail.password=<your-pw>
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
You also must have PostgreSQL-Server installed on your machine and before first starting the project, you must create a database called binobo_db
. Once this is done, you are nearly ready to go!
This project is completely open-source, so if you want to change anything in this source-code, just do so by creating a new branch and making a push-request.