Skip to content

Covey.town is a virtual meeting web application where different groups of people can have simultaneous video calls, allowing participants to drift between different conversations

Notifications You must be signed in to change notification settings

gerardotalora/covey.town

Repository files navigation

Covey.Town

Covey.Town provides a virtual meeting space where different groups of people can have simultaneous video calls, allowing participants to drift between different conversations, just like in real life. Covey.Town was built for Northeastern's Spring 2021 software engineering course, and is designed to be reused across semesters. You can view our deployment of the app here. You can view our github repo here.

Covey.Town Architecture

The figure above depicts the high-level architecture of Covey.Town. The frontend client (in the frontend directory of this repository) uses the PhaserJS Game Library to create a 2D game interface, using tilemaps and sprites. The frontend implements video chat using the Twilio Programmable Video API, and that aspect of the interface relies heavily on Twilio's React Starter App.

A backend service (in the services/roomService directory) implements the application logic: tracking which "towns" are available to be joined, and the state of each of those towns.

Another backend service (in the services/databaseService directory) implements the database client which manages connections and transactions with MongoDB and allows the entire application to have persistence. It allows the application to maintain user state such as their friend lists, if they are online and their location.

Running this app locally

Running the application locally entails running the backend rooms service, the backend database service, and a frontend.

Setting up the backend

Rooms Service

To run the backend, you will need a Twilio account. Twilio provides new accounts with $15 of credit, which is more than enough to get started. To create an account and configure your local environment:

  1. Go to Twilio and create an account. You do not need to provide a credit card to create a trial account.
  2. Create an API key and secret (select "API Keys" on the left under "Settings")
  3. Create a .env file in the services/roomService directory, setting the values as follows:
Config Value Description
TWILIO_ACCOUNT_SID Visible on your twilio account dashboard.
TWILIO_API_KEY_SID The SID of the new API key you created.
TWILIO_API_KEY_SECRET The secret for the API key you created.
TWILIO_API_AUTH_TOKEN Visible on your twilio account dashboard.

Starting the backend

Rooms Service

Once your backend is configured, you can start it by running npm start in the services/roomService directory (the first time you run it, you will also need to run npm install). This backend service will automatically restart if you change any of the files in the services/roomService/src directory.

Database Service

You can start the database service by running npm start in the services/databaseService directory (the first time you run it, you will also need to run npm install). This backend service will automatically restart if you change any of the files in the services/databaseService/src directory.

Configuring the frontend

Create a .env file in the frontend directory, with the line: REACT_APP_TOWNS_SERVICE_URL=http://localhost:8082/ (if you deploy the roomService to another location, put that location here instead)

Also add this line REACT_APP_DATABASE_SERVICE_URL=http://localhost:8081/ (if you deploy the databaseService to another location, put that location here instead)

Running the frontend

In the frontend directory, run npm start (again, you'll need to run npm install the very first time). After several moments (or minutes, depending on the speed of your machine), a browser will open with the frontend running locally. The frontend will automatically re-compile and reload in your browser if you change any files in the frontend/src directory.

Deploying this app to Heroku and Netlify

For deployment to Heroku and Netlify, utilize the steps outlined in the following activity and integrate the additional steps included below:

Additional Steps (to integrate with the activity linked above)

Set Up Github Actions

  • Follow all steps in the activity linked above.
  • In step 2, in the .github/workflows/main.yml file, add the following additional steps to the build-and-test section to build and test backend database service:
    - name: Build and test backend database service
       run: cd services/databaseService; npm install && npm run lint && npm test
    
  • The fully updated build-and-test section in the main.yml file is shown below: image

Set Up Heroku

  • Follow all steps in the activity linked above.
  • After completing this section, use the same steps to create a second Heroku app. Name the second app ‘covey-town-database’.
  • Return to the GitHub Settings -> Secrets pane and add a new secret HEROKU_APP_NAME_DB and set to the name to ‘covey-town-database’.
  • In the .github/workflows/main.yml file, add the following additional steps to the deploy section for the second Heroku app:
      - uses: actions/checkout@v2
      - uses: akhileshns/heroku-deploy@v3.12.12 # Deploy to Heroku action
        with:
          heroku_api_key: ${{secrets.HEROKU_API_KEY}}
          heroku_app_name: ${{secrets.HEROKU_APP_NAME_DB}}
          heroku_email: ${{secrets.HEROKU_EMAIL}}
  • The fully updated deploy section in the main.yml file is shown below:
  • image

Set Up Netlify

  • Follow all steps in the activity linked above.
  • In Step 4, within the ‘Environment’ section of the settings page, add in the REACT_APP_DATABASE_SERVICE_URL, which is the Heroku server name for the second Heroku app that was created.

Deploying the backend services

  • you will have to clone this repository into your system.
  • download and install Heroku CLI
  • login to your Heroku account where you want to deploy the backend. You must have completed the setup steps described above. To login run heroku login in your terminal, in the covey.town directory.
  • run the following commands in the Heroku CLI:
    • heroku git:remote -r data-service -a covey-town-database
    • heroku git:remote -r room-service -a covey-town-heroku
  • This binds your local’s git remote to multiple heroku apps. You can use git remote -v to verify you got it setup correctly.
  • You can now run these commands to deploy our services on heroku:
    • git push data-service
    • git push room-service
  • That's it after completing the above steps you should have both the backend services deployed.

About

Covey.town is a virtual meeting web application where different groups of people can have simultaneous video calls, allowing participants to drift between different conversations

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published