Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.02 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.02 KB

https://thegymwanderer.xyz/

gym-wanderer

Rent out your personal home gym, to make a profit $$$. Or you can reserve times at other users personal gyms as an alternative to paying for an expensive gym membership

Stack

React
Node
Express
GraphQL
PostGresql

tooling

Type ORM
Type Graphql
Graphql Code Generator

Directories

/app React Native
/controllers shared code (graphql queries/mutations) between React web and React Native
/web React web client
/server TypeORM GraphQL server with postgreSQL database

How to run

1) Make sure you have an instance of postgres running on your machine

2) Clone and install dependencies

git clone https://github.com/tomcorey26/gym-wanderer.git
cd gym-wanderer && yarn

Specify the connection infomation to your db inside the createConnection() function in server/index.ts

3) Run these in two different terminal instances

cd packages/server && npm start
cd packages/web && npm start