All Projects β†’ pmqueiroz β†’ Proffy

pmqueiroz / Proffy

Licence: mit
Online teaching platform made with React.js and React Native using Typescript during the NLW (Next Level Week) #02 πŸš€

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Proffy

Sycophant
Numerous Ninjas: Beta stage mobile game written in Unity
Stars: ✭ 64 (-12.33%)
Mutual labels:  mobile
Alpaca Rn Mobile
An example React native mobile app to help you get started with Alpaca
Stars: ✭ 67 (-8.22%)
Mutual labels:  mobile
Countly Sdk Cordova
Countly Product Analytics SDK for Cordova, Icenium and Phonegap
Stars: ✭ 69 (-5.48%)
Mutual labels:  mobile
Gmimagepicker.xamarin
Port of the original GMImagePicker component to Xamarin.iOS
Stars: ✭ 65 (-10.96%)
Mutual labels:  mobile
Cordova Plugin Test Framework
Apache Cordova
Stars: ✭ 66 (-9.59%)
Mutual labels:  mobile
React Device Detect
Detect device, and render view according to detected device type.
Stars: ✭ 1,145 (+1468.49%)
Mutual labels:  mobile
Fetch
The best file downloader library for Android
Stars: ✭ 1,124 (+1439.73%)
Mutual labels:  mobile
Snipit
Snipit allows you to capture and save interesting sections from any source of information. Be it textbooks, journals, computer screens, photographs, flyers, writings on a whiteboard, etc.
Stars: ✭ 70 (-4.11%)
Mutual labels:  mobile
Cone
A ledger.
Stars: ✭ 66 (-9.59%)
Mutual labels:  mobile
Angular Responsive Tables
Make your HTML tables look great on every device
Stars: ✭ 69 (-5.48%)
Mutual labels:  mobile
Wa status saver
A whatsApp status saver/downloader with flutter
Stars: ✭ 66 (-9.59%)
Mutual labels:  mobile
Chameleon
🦎 δΈ€ε₯—δ»£η θΏθ‘Œε€šη«―οΌŒδΈ€η«―ζ‰€θ§ε³ε€šη«―ζ‰€θ§
Stars: ✭ 8,639 (+11734.25%)
Mutual labels:  mobile
Cyber Camera
Turns any webcam into a smart security camera for home surveillance
Stars: ✭ 68 (-6.85%)
Mutual labels:  mobile
Truetime Android
Android NTP time library. Get the true current time impervious to device clock time changes
Stars: ✭ 1,134 (+1453.42%)
Mutual labels:  mobile
The forge
Our groundbreaking, lightning fast PWA CLI tool
Stars: ✭ 70 (-4.11%)
Mutual labels:  mobile
One Punch Fitness
A "One Punch Man"-inspired workout app!
Stars: ✭ 64 (-12.33%)
Mutual labels:  mobile
Monzoweb
πŸ’° View your Monzo account from your browser and view all your transactions on an interactive map!
Stars: ✭ 67 (-8.22%)
Mutual labels:  mobile
Furnitureshop3d
Xamrin.Forms UI Challenge
Stars: ✭ 71 (-2.74%)
Mutual labels:  mobile
Unity3d Simple Mobile Joystick
Mobile Joystick suitable for any types of game
Stars: ✭ 68 (-6.85%)
Mutual labels:  mobile
Amp Theme Framework
Start Creating an AMP theme in minutes - This is a default / boilerplate theme, you can use this, modify and make one your own.
Stars: ✭ 69 (-5.48%)
Mutual labels:  mobile


Online teaching platform made with React.js and React Native using Typescript during the NLW (Next Level Week) #02πŸš€

License Git Stars Netfly Stats Netfly Stats NLW Stats Codacy Quality

Content

Getting Started πŸš€

Cloning

# Clone the repository using git
$ git clone https://github.com/pmqueiroz/proffy.git

# Access the project folder
$ cd proffy

Requirements

Web

This project use third party dependencies that need to be installed, use that command to install all needed dependencies

$ cd web
$ yarn install

The above command will install all third party dependencies used. If you want to install manually all the dependencies follow the steps bellow

# Entering in web directory
$ cd web

# Installing depencies
$ yarn add @types/react-router-dom -D
$ yarn add axios

To start the server you need the database, to make migrations use the command:

$ yarn knex:migrate

The above command is a custom command made on package.json file. (Ln 8, Col 5)

Server

This project use third party dependencies that need to be installed, use that command to install all needed dependencies

$ cd server
$ yarn install

The above command will install all third party dependencies used. If you want to install manually all the dependencies follow the steps bellow

# Entering in server directory
$ cd server

# Installing depencies
$ yarn add @types/cors -D
$ yarn add @types/express -D
$ yarn add ts-node-dev -D
$ yarn add knex

# Proffy Version 2.0
$ yarn add pg
$ yarn add dotenv
Mobile

This projects use third party dependecies and fonts that need to be installed in development, use that command to install all needed dependencies and fonts

$ cd mobile

# Installing all fonts used
$ expo install expo-font @expo-google-fonts/archivo @expo-google-fonts/poppins

# Installing all dependencies required
$ yarn install

The above command will install all third party dependencies and fonts used. If you want to install manually all dependencies and fonts used. follow the steps bellow

# Installing fonts used
$ expo install expo-font @expo-google-fonts/archivo
$ expo install expo-font @expo-google-fonts/poppins

# Installing dependecies required
$ yarn add @react-navigation/native
$ expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
$ yarn add @react-navigation/stack
$ yarn add @react-navigation/bottom-tabs
$ yarn add axios
$ expo install @react-native-community/async-storage

Running

To start the Web Server run the command

# Entering in web directory
$ cd web

# Run the web server
$ yarn start

To start the Back Server run the command

# Entering in Server directory
$ cd server

# Run the Back Server
$ yarn start

To run the mobile version run the command

# Entering in Mobile directory
$ cd mobile

# Run the Mobile Version
$ yarn start

Issues πŸ›

Report

In case you are having any problem do not be shy to report to us in Issues session.

Contributing 🀝

There are many forms to contribute with the project, first of all you can give this github repo a Star.

If you want do help with the code follow the steps bellow

# Fork using GitHub official command line
# If you don't have the GitHub CLI, use the web site to do that.
$ gh repo fork pmqueiroz/proffy

# Clone your fork
$ git clone {your-fork-url}
$ cd proffy

# Create a branch with your feature
$ git checkout -b {branch-name}

# Make the commit with your changes
$ git commit -m 'Feat: {feature-name}'

# Send the code to your remote branch
$ git push origin {branch-name}

Then send a Pull Request that will be analyzed and approved if it helps with the project

Todo πŸ“Œ

Version 2.0 Features

  • [x] Splash screen
  • [x] Extended layout
    • [x] Login
      • [x] Remember me
    • [x] Sign In
    • [ ] Succeed Screen
  • [ ] User auth
    • [x] Web
    • [ ] Mobile
  • [x] User logout
  • [x] Save favorite teachers
  • [ ] Rating system
  • [ ] Password recovery
  • [ ] Teacher profile
  • [ ] Pagination of classes result
  • [ ] Show teacher schedule hours
  • [ ] Deploy

License πŸ“

This project is under the MIT license. See the LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].