Giter Club home page Giter Club logo

board-game_ito's Introduction

board-game_ito

Mongo DB & Docker Setup

  1. Make sure the shell script in /.docker is executable.

    # From .docker folder:
    cd .docker
    chmod +x keyfile.sh entrypoint.sh start.sh

    OR

    # From root folder:
    chmod +x .docker/keyfile.sh .docker/entrypoint.sh .docker/start.sh
  2. Run the script.

    # From .docker folder:
    cd .docker
    start.sh

    OR

    # From root folder:
    .docker/start.sh
  3. (Optional): Open the Mongo DB shell (mongosh) in your bash terminal

    You can open the MongoDB shell (mongosh) in your bash terminal to interact with your Mongo DB instance after your script has started the MongoDB containers. NOTE: ${DATABASE_NAME} should usually be "admin".

    cd ./docker
    
    docker exec -it mongo1 mongosh -u ${USERNAME} -p ${PASSWORD} --authenticationDatabase ${DATABASE_NAME}

    OR

    cd ./docker
    
    # Opens a bash shell inside the mongo1 container first
    docker exec -it mongo1 bash
    
    # Then run mongosh (Mongo Shell)
    mongosh -u ${USERNAME} -p ${PASSWORD} --authenticationDatabase ${DATABASE_NAME}
  4. Testing connection string as if connecting from client

    You can login from the CLI as following:

    mongosh --username ${USERNAME} --password ${PASSWORD} --host mongo1

    OR

    # Just directly pass a connection string.
    mongosh "mongodb://${USERNAME}:${PASSWORD}@localhost/${DB_NAME}"

Stop & Remove Docker Containers

Run the following script (Specify -v to also remove volumes):

# From .docker folder:
cd .docker
docker-compose down -v

OR

# From root folder:
docker-compose -f .docker/docker-compose.yaml down -v

References

Setup with React + Node

Unique ID

Routing

Authentication

Local Storage

Chatbox

Socket.io

Mongo DB

ESLint & Prettier

board-game_ito's People

Contributors

chihiroanihr avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.