We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a30f220 commit 55559c7Copy full SHA for 55559c7
README.md
@@ -17,7 +17,15 @@ This project demonstrates Python REST API capabilities.
17
```
18
### Set up DB
19
1. Configure DB credentials [here](com/demo/dao/CustomerDao.py)
20
-2. And create database **employees** and table **customers**
+2. And create database **employees** and table **customers** with the following commands
21
+```
22
+create database if not exists employees;
23
+create table if not exists employees.customers
24
+(
25
+ name varchar(40) null,
26
+ address varchar(200) null
27
+);
28
29
30
## Run project
31
4. Go to [com/demo/web/CustomersController.py](com/demo/web/CustomersController.py) and run the project
0 commit comments