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.go
update the func createDBConnection with the correct DB URL. - Run
./server/turbo.sql
onturbo
db to initialize the db schema. - cd into
./server
and rungo run .
to start the server. - To start the web client :
- cd into
./turbosdk/js
- run
npm install
to install dependencies - run
npm run build
to build the turbo-js sdk - cd into
./client/web/
- run
npm install
to install dependencies - run
npm run dev
to start the client app
- cd into
- To start the cli client:
- cd into
./client/go-cli
- run
go run .
- cd into