GithubHelp home page GithubHelp logo

moreirajorge / nlw6-reactjs-letmeask Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 316 KB

Rocketseat event project with firebase and ReactJS

License: MIT License

HTML 1.88% TypeScript 70.57% SCSS 27.55%

nlw6-reactjs-letmeask's Introduction

Letmeask

NLW Together 06 License

Letmeask


๐Ÿงช Frameworks / Techs

This project was developed using the following frameworks / techs:

๐Ÿš€ How to run this project

Clone the project and go into the directory.

$ git clone https://github.com/MoreiraJorge/NLW6-ReactJs-LetMeAsk.git
$ cd NLW6-ReactJs-LetMeAsk

To start this project, follow the steps:

# Install dependencies
$ yarn

# Run the project
$ yarn start

The app will be running in the following address: http://localhost:3000.

It is necessary to create an account in Firebase and a project with Realtime Database enabled. Here is a set of rules that you can use:

{
 "rules": {
   "rooms": {
     ".read": false,
     ".write": "auth != null",
     "$roomId": {
       ".read": true,
       ".write": "auth != null && (!data.exists() || data.child('authorId').val() == auth.id)",
       "questions": {
         ".read": true,
         ".write": "auth != null && (!data.exists() || data.parent().child('authorId').val() == auth.id)",
         "likes": {
           ".read": true,
           ".write": "auth != null && (!data.exists() || data.child('authorId').val() == auth.id)"  
         }
       }
     }
   }
 }
}

This project was also deployed with firebaste hosting: https://letmeask-eeac5.web.app/

๐Ÿ’ป Project

Letmeask is perfect for content creators to create Q&A rooms with their public to answer questions, in an organized way.

This project was developed during Next Level Week Together, from the 20th to 27th of June 2021.

๐Ÿ”– Layout

You can visualize the layout in the link bellow:

Remeber that you need a Figma account.


Many thanks to Rocketseat ๐Ÿ‘‹๐Ÿป

nlw6-reactjs-letmeask's People

Contributors

moreirajorge avatar

Watchers

 avatar  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.