Server in Ruby on Rails per il contest del corso di React Native 2020 organizzato da Tree School.
git clone application
cd application
bundle install
rails db:migrate
rails s
rails db:migrate # create the database
rails db:seed # create fake data on database
All Frontend code can be found on app/javascript folder.
All data structure rappresentations can be found on app/models folder.
Il contest prevede lo sviluppo di un applicazione mobile che utilizza le API del web server ed è suddiviso in tre fasi:
FASE 1:
- Autenticazione
- Refresh token ad ogni avvio
- Lista carte
- Profilo utente
- Singola carta -> nome, gioco, descrizione, cta di trasferimento
- Schermata di scambio carta tramite inserimento codice su TextInput
FASE 2:
- Scambio carta tramite QR Code
- Messaggio di errore se app offline
- Filtro carte per gioco
FASE 3:
- Trasferimento di carte multiple
- Modifica indirizzo email
- Modifica password
Endpoint
https://tree-rn-server.herokuapp.com/authentication/login-action
Parametri
{
username_email: string,
password: string
}
Endpoint
https://tree-rn-server.herokuapp.com/authentication/signup-action
Parametri
{
name: string,
surname: string,
email: string,
password: string,
password_confirmation: string,
username: string
}
Endpoint
https://tree-rn-server.herokuapp.com/refresh-token
Parametri
{}
Header
Authorization: <token>
Endpoint
https://tree-rn-server.herokuapp.com/refresh-portfolio-code
Parametri
{}
Header
Authorization: <token>
Endpoint
https://tree-rn-server.herokuapp.com/get-cards
Parametri
{}
Header
Authorization: <token>
Endpoint
https://tree-rn-server.herokuapp.com/move-card
Parametri
{
"card_id": integer,
"portfolio_code": string
}
Header
Authorization: <token>