Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump acorn from 5.7.3 to 7.4.1 #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Awesome Project Build with TypeORM
# Awesome GraphQL Project Build with TypeORM and Redis

Steps to run this project:

1. Run `npm i` command
2. Setup database settings inside `ormconfig.json` file
3. Run `npm start` command

TODO - make tests run in watch mode
3. Install Postgres on your system and setup roles and DB according to the changes you made in OrmConfig.ts. Refer - https://www.codementor.io/@engineerapart/getting-started-with-postgresql-on-mac-osx-are8jcopb
4. Setup redis - https://gist.github.com/tomysmile/1b8a321e7c58499ef9f9441b2faa0aa8
3. Run `npm start` command
8 changes: 4 additions & 4 deletions ormconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "anuraagg",
"username": "anuraaggupta",
"password": "",
"database": "graphql-ts-server-boilerplate",
"database": "graphql_ts_boilerplate_db",
"synchronize": true,
"logging": true,
"entities": [
Expand All @@ -29,9 +29,9 @@
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "anuraagg",
"username": "anuraaggupta",
"password": "",
"database": "graphql-ts-server-boilerplate-test",
"database": "graphql_ts_boilerplate_db_test",
"synchronize": true,
"logging": false,
"dropSchema": true,
Expand Down
Loading