Updated readme and ignore

This commit is contained in:
Sasank Vishnubhatla 2017-06-16 15:05:28 -04:00
parent b6a9e326cc
commit 09158ee280
2 changed files with 15 additions and 4 deletions

2
.gitignore vendored
View file

@ -8,3 +8,5 @@ target/*
_site/ _site/
.DS_Store .DS_Store
.log .log
.editorconfig
.springBeans

View file

@ -17,6 +17,9 @@ The purpose of KidClinic is to simulate the building of an enterprise applicatio
- [x] View current list of doctors and their specialities - [x] View current list of doctors and their specialities
- [x] Search through database of parents - [x] Search through database of parents
### Adding parents and children
When viewing the parents page, users have an option of searching the parents database or adding a parent. Once a parent is chosen or added, a child can be added to that parent.
## Upcoming Additions ## Upcoming Additions
| Addition | Stage of Development | Expected Development Time | Lead | | Addition | Stage of Development | Expected Development Time | Lead |
| :-------- | :-------------------- | :------------------------- | :--- | | :-------- | :-------------------- | :------------------------- | :--- |
@ -26,11 +29,17 @@ The purpose of KidClinic is to simulate the building of an enterprise applicatio
| Add reviews section for doctors | Development | Short Term | Sasank | | Add reviews section for doctors | Development | Short Term | Sasank |
| Calendar Scheduling | Research | Long Term | Sasank | | Calendar Scheduling | Research | Long Term | Sasank |
# Login System ### Login System
THe login system is meant to create three different views for users. There will be three categories of users: parents, nurses, and doctors. Each must login to view certain aspects of the website. Without the login system, the all the information of the parents is viewable without any security.
#### How to incorporate the login system
In order to create a login system, we need to create a subfolder for the login controller. This follows [DoctorController.java](/src/main/java/org/springframework/samples/kidclinic/doctor/DoctorController.java) for the methods. In order to create a login system, we need to create a subfolder for the login controller. This follows [DoctorController.java](/src/main/java/org/springframework/samples/kidclinic/doctor/DoctorController.java) for the methods.
# Reviews section for Doctors ### Reviews section for Doctors
Nicely enough, this also follows the login system. The reviews section is meant to show the location of the doctors and include a view reviews for each doctor.
#### How to incorporate the reviews
In order the create the reviews section, we must create a controller similar to [DoctorController.java](/src/main/java/org/springframework/samples/kidclinic/doctor/DoctorController.java). Then we need to add some reviews to the database as well as locations of each doctor. Then, using [Thymeleaf](http://www.thymeleaf.org/), we can display this information in [reviews.html](/src/main/resources/templates/reviews.html).
## Contact ## Contact
If you are interested in the development of this app, you can contact any of the developers. You can reach us at If you are interested in the development of this app, you can contact any of the developers. You can reach us at