This project is an API server for another frontend project that is built with ReactJS.
Column | Type | Description |
---|---|---|
id |
uuid |
Not Null. Autoincrement |
name |
varchar |
Not Null. |
email |
varchar |
Not Null. |
phone |
integer |
Not Null. |
coord_x |
float4 |
Not Null. |
coord_y |
float4 |
Not Null. |
db_config = {
user: 'user_database',
host: 'localhost',
database: 'name_database',
password: 'password_database',
port: 5432,
}
Clone the project
git clone https://github.com/leoholiveira/Test-Node
Go to the project directory
cd Test-Node
Install dependencies
npm install
Start the server
node server.js
Client: React
Server: Node, Express
Database: Postgres