Code Monkey home page Code Monkey logo

tutti's Introduction

Tutti

Setting up environment for the first time

Preferred IDE: VS Code

Development Workflow

  1. npm install
  2. npm run install
  3. npm start
  4. Go to http://localhost:3000/

Git Workflow

  1. git checkout -b <your-name>/<feature-name>

  2. Code until you hit a good checkpoint. Make sure there are no errors/broken builds.

  3. git status shows you what files you have changed.

  4. Commit your files

    • If you want to commit all modified files:

      git add -A
      
    • Otherwise to add the particular files you want to commit:

      git add <file1> <file2> <...>
      
  5. git commit -m "some commit message"

  6. Push your branch

    • For brand new branches:

      git push -u origin <branch name>
      
    • For previously pushed branches:

      git push
      
    • you can find your branch names with git branch

Pull Request Workflow

  • Make a new branch formatted <your-name>/<feature-name> to submit a pull request to master.
  • Notify team that a PR has been made :)
  • After a pull request is approved, rebase and squash commits before merging into master
  1. Checkout to master

    git checkout master
  2. Pull the most recent changes from master

    git pull
  3. Check into the branch of the PR

    git checkout <your branch name>
  4. Rebase and squash commits:

    git rebase master
  5. Push changes to GitHub.

    git push -f

    Do NOT force push to other people's branches or shared branches

tutti's People

Contributors

shannonphu avatar baconpancakes avatar

Watchers

 avatar  avatar

tutti's Issues

check for unique usernames

stuff breaks when players try to join with a different username. can try to validate serverside and reject if nonunique

hello

i am doge

░░░░░░░░░▄░░░░░░░░░░░░░░▄
░░░░░░░░▌▒█░░░░░░░░░░░▄▀▒▌
░░░░░░░░▌▒▒█░░░░░░░░▄▀▒▒▒▐
░░░░░░░▐▄▀▒▒▀▀▀▀▄▄▄▀▒▒▒▒▒▐
░░░░░▄▄▀▒░▒▒▒▒▒▒▒▒▒█▒▒▄█▒▐
░░░▄▀▒▒▒░░░▒▒▒░░░▒▒▒▀██▀▒▌
░░▐▒▒▒▄▄▒▒▒▒░░░▒▒▒▒▒▒▒▀▄▒▒▌
░░▌░░▌█▀▒▒▒▒▒▄▀█▄▒▒▒▒▒▒▒█▒▐
░▐░░░▒▒▒▒▒▒▒▒▌██▀▒▒░░░▒▒▒▀▄▌
░▌░▒▄██▄▒▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▌
░▀▒▀▐▄█▄█▌▄░▀▒▒░░░░░░░░░░▒▒▒

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.