Frontend part of the app is available SmartBrain
Using: Node.js
, Express.js
, PostgreSQL
, Knex.js
You need to have your own PostgreSQL database.
users
with columns:
id
- type: serial
, primary key
name
- type: varchar(100)
, not null
email
- type: varchar(100)
, not null, unique
entries
- type: bigint
, not null
joined
- type: timestamp
, not null
login
with columns:
id
- type: serial
, primary key
hash
- type: varchar(100)
, not null
email
- type: varchar(100)
, not null, unique
In the project directory, you can run:
Installs all the dependencies required for the project.
You always can install it with npm install -g nodemon
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.