Coder Social home page Coder Social logo

routine-guide's People

Contributors

denyskorolkov avatar

Watchers

 avatar

routine-guide's Issues

GitFlow

//Cloning git repo project
// Cloned repo
git clone [email protected]:denyskorolkov/routine-guide.git

// Initialization git flow
git flow init

// Branches
main->release->develop->feature_branch

git flow develop start feature_branch

// Start work with git flow
git flow feature start feature_branch
git checkout -b feature_branch

// Edit some code
git commit -a -m "Add first draft of some feature"

// Put in self repo
git push origin feature_branch

//
git checkout develop

// Merge new features on feature_branch witn develop branch
git merge feature_branch

// Finish work with git flow
git flow feature finish 'feature_branch'

// If branch "release"
git flow release start 0.1.0
// Switched to a new branch 'release/0.1.0'
git checkout main
git merge release/0.1.0
git flow release finish '0.1.0'

Fetching data from airtable

Create react component - visual component (UI - user interface) using react Hooks:

Create react component - apps logic using React:

  • Read about creating apps logic based on React components
  • Write a apps logic using React Hooks

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.