A reservation system for restaurants created by five TUM-Students.
Using Spring Boot as Backend, React as Frontend and currently no DBMS.
- Create an API Key at https://developers.google.com/maps/documentation/javascript/get-api-key
- Create a file "apikey.jsx":
touch src/main/java/hello/world/demo/view/react-project/src/data/apikey.jsx
- Edit apikey.jsx:
const apikey = "your_api_key"; export default apikey;
- edit EMAIL_PASSWORD, EMAIL_USERNAME and EMAIL_HOST in src/main/java/hello/world/demo/control/email/EmailServiceImpl.java,
e.g.
private static final String EMAIL_PASSWORD = "my_password"; private static final String EMAIL_USERNAME = "[email protected]"; private static final String EMAIL_HOST = "smtp.mail.yahoo.com";
./gradlew clean build
chmod +x start_client && ./start_client
- run DemoApplication.java