Skip to content

glennlaughlin/angular-graphql-nestjs-postgres-starter-kit

 
 

Repository files navigation

🚀Angular 8 + GraphQL + NestJS + Postgres Starter Kit

A full-stack starter kit with Angular 8, GraphQL, Apollo, NestJS and Postgres.

Starting a new web app can be hard. Choosing the right technologies, architecting the foundation and developing the core of an application can take a lot of time. Setting up a back-end and front-end requires a substantial amount of work. Furthermore, if you don't do things correctly, it can create technical debt, painless refactoring, and maintenance hell. We take care of all the tedious, mundane setup process for you.

This stater kit provides you with a kick start to your project by providing a scalable, modular web app with features like sign up and log in, user management, easy database configuration and more. We carefully curated cutting-edge technologies for a full-stack application. View the full list of features below.

Happy Coding :)

Buy Me A Coffee

Features

Table of Contents

⬆️ Getting Started

⬆️ Requirements

Follow this guide to setup your mac dev environment.

⬆️ Installation

  • Fork the repo
  • git clone git@https://github.com/<yourusername>/angular-graphql-express-postgres-starter-kit.git
  • cd angular-graphql-express-postgres-starter-kit
  • git remote add upstream git@https://github.com/alexitaylor/angular-graphql-express-postgres-starter-kit.git

⬆️ Client

  • cd client
  • npm install
  • npm start
  • visit http://localhost:4200

Get started with these tasks:

  • $ npm start: start dev server with live reload on http://localhost:4200
  • $ npm run build: build web app for production
  • $ npm test: run unit tests in watch mode for TDD
  • $ npm run test:ci: lint code and run units tests with coverage
  • $ npm run e2e: launch e2e tests
  • $ npm run docs: show docs and coding guides
  • $ npm run prettier: format your code automatically

⬆️ Server

Installation

$ cd server/project
$ npm install

Create Database

  • Required only initial setup
  • Find default Postgres Database Configs by navigating to server/project/ormconfig.json file
  • Connect to Postgres shell: psql postgres
  • Create database:
postgres=# create database nest_graphql_test;
CREATE DATABASE

Seed Database

  • Run the following command to seed your database with default and random generated data:
$ npm run seedData
  • WARNING: Running this file will DELETE ALL data in your database and re-generate and insert new, random.
  • BE CAREFUL running this command in production env. It will delete all production data. The script will check if the environment you're running in is production or not by checking server/project/src/environments/environment.ts file configs. If environment.production config is set to true, then the seeding process will only generate default roles and 2 default users. This is useful when first setting up your production environment.

Running the server

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Required for Docker

Fill out .env file with postgres env variables

bash $ touch .env

POSTGRES_PASSWORD=supersecret
POSTGRES_USER=user
POSTGRES_DB=db

DATABASE=db
DATABASE_USER=user
DATABASE_PASSWORD=supersecret
DATABASE_HOST=postgres
DATABASE_PORT=5432

⬆️ Contributing

Anyone is welcome to contribute, however, if you decide to get involved, please take a moment to review the guidelines:

⬆️ Cheat Sheets

⬆️ TODO:

  • Implement TypeORM migrations and default data on initial setup
  • Write Docker setup and configuration README
  • More tests
  • Entity Generator (able to create BE and FE models, GraphQL queries/mutations and some FE boilerplate code from an defined entity.

About

🚀Angular 8 + GraphQL + NestJS + Postgres Starter Kit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 81.8%
  • HTML 14.8%
  • CSS 1.8%
  • JavaScript 1.3%
  • Dockerfile 0.3%