talkrz / mynotes-server

Sticky notes app (server-side code)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My notes is a simple sticky notes app created to learn web development tech stack (react, redux etc.) and make a useful thing as a side effect.

This repo contains server-side code.

Look at the main repository for more details and the application demo.

How to set up the development environment

Install deps:

npm install

Create an empty database:

npm run db:schema:create

Populate database with test data:

npm run db:fixtures

Alternatively there is a shortcut command that performs 3 operations at once:

  1. Drop database
  2. Create empty database
  3. Populate tables with test database
npm run db:schema:recreate

Start actual app:

npm start

Running the tests

npm test

About

Sticky notes app (server-side code)


Languages

Language:JavaScript 100.0%