Skip to content

Multiplayer online card game platform written in Elixir, Phoenix, and React. Drag and Drop provided by React-Beautiful-DND.

Notifications You must be signed in to change notification settings

LucasGentil/DragnCards

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DragnCards

Multiplayer online card game written in Elixir, Phoenix, React, and Typescript.

Local Instance

The local instance of Dragncards serves a purpose for those looking to develop, contribute, or play Dragncards in an offline environment.

Pre Requisites

This environment uses HashiCorp Vagrant to stand up Dragncards within a virtual machine. This requires the following:

These can be installed on macOS, Windows, or Linux.

Run Dragncards

  • Clone the Dragncards repository locally
    • git clone https://github.com/seastan/dragncards
  • From the dragncards change to the vagrant folder
    • cd vagrant
  • Run Vagrant
    • vagrant up

Once this is done browse do http://127.0.0.1:3000.

Default Users

The default users are

If you prefer different names please update the alias value in vagrant/sql/users.sql and run vagrant up.

Multiplayer

If you're interested in running multiplayer games where others connect to your instance you will require the following changes. Where IPADDRESS is located down below you will need to change

NOTE: This must be done each time you rebuild as this is a deviation from the main branch.

Replace 127.0.0.1 with your required IPADDRESS. This may be a public IP, private IP, or something else. dragncards/frontend/package.json

    "start": "REACT_APP_WS_URL=ws://127.0.0.1:4000/socket npm-run-all -p start:js",
  
    "start": "REACT_APP_WS_URL=ws://IPADDRESS:4000/socket npm-run-all -p start:js",

dragncards/backend/config/config.exs

The backend can listen on any addressed opposed to localhost. Comment out the following and replace with 0.0.0.0

  url: [host: "0.0.0.0"],
  #url: [host: "localhost"],

About

Multiplayer online card game platform written in Elixir, Phoenix, and React. Drag and Drop provided by React-Beautiful-DND.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.8%
  • Elixir 29.5%
  • TypeScript 14.8%
  • CSS 3.0%
  • HTML 0.4%
  • Python 0.2%
  • Other 0.3%