An open API service indexing awesome lists of open source software.

https://github.com/japrozs/ts-project-setup


https://github.com/japrozs/ts-project-setup

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Full Stack typescript project boilerplate setup

## How to use

```bash
# Clone in repo
git clone https://github.com/japrozs/ts-project-setup.git
cd ts-project-setup
cd packages/server
yarn install
cd ../app/
yarn install
```

## How to run the server

```bash
cd packages/server
createdb # then change this name in the index.ts file in in the first few lines of the main function
yarn watch # to start the typescript compilation
```

Then, in another terminal window run:

```bash
yarn dev
```

This will start the GraphQL Server on `http://localhost:4000/graphql`