Coder Social home page Coder Social logo

cars's Introduction

Elixir Chile 🇨🇱

Elixir Chile 🇨🇱 tiene el objetivo de crear artefactos de software, documentación y actividades para el fomento de la tecnología Elixir en el país.

logo

Comunidad

Nuestros Repositorios.

Unirse a Discord de Elixir Chile.

También disponible por si prefieres Telegram.

La Wiki sirve para compartir pequeños snippets de códigos, como también tutoriales y otros tips.

Los eventos, meetups y otros relacionados estarán en un tablero de proyectos de Github para su fácil organización.

cars's People

Contributors

clsource avatar

Watchers

 avatar  avatar

cars's Issues

[feat] Add Database Tables

Create tables that store the following car data.

Schema: https://www.dbml.org/home/

Table makers {
  id int [pk, increment]
  name varchar(100)
  inserted_at timestamp
  updated_at timestamp
}

Table cars {
  id int [pk, increment]
  maker int [ref: > makers.id] // # one maker -> * cars
  model varchar(100)
  about varchar(100)
  image_url varchar
  inserted_at timestamp
  updated_at timestamp
}

[docs] project explanation and tech stack

About

This is a simple project that will showcase information about cars using separated backend and frontend.

Backend Technologies

Frontend Technologies

Commit Strategy

types other than fix: and feat: are allowed, for example @commitlint/config-conventional (based on the the Angular convention) recommends build:, chore:, ci:, docs:, style:, refactor:, perf:, test:, and others.

Must be one of the following:

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to the CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • docs: Documentation only changes
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug nor adds a feature
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
  • test: Adding missing tests or correcting existing tests
  • chore: Anything not related to the previous ones

Samples: (even more samples)

feat: allow provided config object to extend other configs
docs(changelog): update changelog to beta.5
fix(release): need to depend on latest rxjs and zone.js

The version in our package.json gets copied to the one we publish, and users need the latest of these.

Branch Strategy

Each branch must have a related issue.

{issue_number}-{tag}-{name}

Example

1-feat-create-buttons

Issue Strategy

  1. Create the issue in Github with explanation. Tag it properly
  2. Create the branch in the repo and work on it
  3. Send the PR
  4. Keep the branch (or archive it if needed)

Testing

Docs

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.