An app that lets you chat with people near you, and doesn't let you if you aren't near them.
- Create Postgres DB named
turbo - In
./server/db.goupdate the func createDBConnection with the correct DB URL. - Run
./server/turbo.sqlonturbodb to initialize the db schema. - cd into
./serverand rungo run .to start the server. - To start the web client :
- cd into
./turbosdk/js - run
npm installto install dependencies - run
npm run buildto build the turbo-js sdk - cd into
./client/web/ - run
npm installto install dependencies - run
npm run devto start the client app
- cd into
- To start the cli client:
- cd into
./client/go-cli - run
go run .
- cd into