Skip to content

Commit 55559c7

Browse files
authored
Update README.md
1 parent a30f220 commit 55559c7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ This project demonstrates Python REST API capabilities.
1717
```
1818
### Set up DB
1919
1. Configure DB credentials [here](com/demo/dao/CustomerDao.py)
20-
2. And create database **employees** and table **customers**
20+
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+
```
2129
2230
## Run project
2331
4. Go to [com/demo/web/CustomersController.py](com/demo/web/CustomersController.py) and run the project

0 commit comments

Comments
 (0)