https://github.com/japrozs/ts-project-setup
https://github.com/japrozs/ts-project-setup
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/japrozs/ts-project-setup
- Owner: japrozs
- Created: 2021-08-30T04:10:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-30T04:15:38.000Z (almost 4 years ago)
- Last Synced: 2025-01-09T01:04:00.654Z (5 months ago)
- Language: TypeScript
- Size: 18.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`