Visual storytelling and blogging in time and space.
You will need a PostgreSQL server running and specify its port in the server/index.js
file.
Install all dependencies. Server and client are two separate projects that need their respective packages to be installed via npm
server:
from the root directory:
cd server
npm i
client:
from the root directory:
cd client
npm i
To run the server:
from the root directory:
cd server
node run index.js
To run the client:
from the root directory:
cd client
npm run dev