Skip to content

ahpercival/nc_news_API

Repository files navigation

nc_news_API

This repo is the backend API for a news app, that allows users to search, read, post and delete articles, as well as add/remove votes and comments.

This backend has been built with Express, Knex and a PostgreSQL database. It is hosted on Heroko at this link: https://ahp-nc-news.herokuapp.com/api

Installation

$ npm install knex, pg, express

Create a file in the root called knexfile.js and paste in the following code:

const { DB_URL } = process.env;

const ENV = process.env.NODE_ENV || 'development';

const baseConfig = {
  client: 'pg',
  migrations: {
    directory: './db/migrations',
  },
  seeds: {
    directory: './db/seeds',
  },
};

const customConfigs = {
  development: {
    connection: {
      database: 'nc_news',
      //username: '',
      //password: '',
    },
  },
  test: {
    connection: {
      database: 'nc_news_test',
      //username: '',
      //password: '',
    },
  },
  production: {
    connection: `${DB_URL}?ssl=true`,
  },
};

module.exports = { ...baseConfig, ...customConfigs[ENV] };

If you are using Linux you will need to un-comment and fill in your username and password in customConfigs.

Testing

$ npm install mocha, chai, supertest -D
$ npm t

Usage

$ npm run setup-dbs
$ npm run seed

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published