当前位置: 首页 > 软件库 > 游戏/娱乐 > >

converser

A Game
授权协议 Readme
开发语言 C/C++
所属分类 游戏/娱乐
软件类型 开源软件
地区 不详
投 递 者 陆栋
操作系统 未知
开源组织
适用人群 未知
 软件概览

Converser

An interesting game of telephone

Building

Building locally is pretty straight forward

Prerequisites

Local dependencies

  1. npm (for tyche)
  2. yarn (only needed if you want locally installed deps)
  3. composer (only needed if you want locally installed deps)
  4. grammarly/rocker
  5. tyche
  6. docker
  7. docker-compose

An environment script

Create a file called create_env.sh at the root of the repo, with the following contents:

#!/bin/bash
echo export DB_NAME="converser"
echo export DB_HOST="rethunk"
echo export SMS="an sms number"
echo export CALL="phone number to call from"
echo export CALL_HOST="http://dev.converser.space:YOUR_PORT/"
echo export STRIPE_KEY="your stripe key"
echo export STRIPE_P_KEY="Your publishable stripe key"
echo export PLIVO_ID="Your plivo id"
echo export PLIVO_TOKEN="Your plivo token"

Then initialize your environment: eval "./create_env.sh"

Installing dependencies locally

The code's dependencies, as installed by this step, arenot used to run the project. It's only useful if you editordoes auto-complete.

tyche develop install

Now, after a few minutes, you'll have everything installed.

Starting the development server

tyche develop start

This command will start all the development services, and buildall required dependencies inside docker.

Running production locally

docker-compose -f docker-compose-prod.yml up

Building containers from scratch

tyche build

Deploying containers

Reminder: Deployment containers have your set environment tokens embedded

tyche bump --set vVERSION

相关阅读

相关文章

相关问答

相关文档