blob: c22f27c29825580d2651501753b6f61df0449c0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Voll - Managing your clinic (WIP)
Voll is a webapp for managing medical clinics, you can register doctors and patients, schedule appointments and easily manage your clinic.
The back-end is a rest api built in java/spring and the front-end is made with vue.js.
It's a work in progress, it's not possible to schedule appointments yet.
## Tech-Stack
Main technologies used in the project.
<table>
<thead>
<tr>
<th>Front End</th>
<th>Back End</th>
<th>Libraries</th>
</tr>
</thead>
<tbody>
<tr>
<td>Vue.js</td>
<td>Spring</td>
<td>Maska</td>
</tr>
<tr>
<td>Node.js</td>
<td>Java</td>
<td></td>
</tr>
<tr>
<td>TypeScript</td>
<td>MySQL/MariaDB</td>
<td></td>
</tr>
</tbody>
</table>
## Installation
1. Configure the application.properties file in the api src folder and create a database with the configured name. Build and run the api.
2. Go to the folder web-client/voll and run:
```
npm install
npm run serve
```
|