About | Features | Technologies | Requirements | Starting | Author
This project was developed with the goal of practicing web development technologies and concepts. It was an evaluation of the Web Programming subject. It is a web application about a Brazilian open source dataset that allows the user to choice some questions and filter them by state and years.
✔️ User register on the open route;
✔️ User sign-in;
✔️ Some questions about the Sisfauna dataset;
✔️ Some data filters by states and years;
✔️ Data results with smart graphs;
✔️ Tracking and counting of user location;
✔️ Location results with map and graph
The following tools were used in this project:
Before starting 🏁, you need to have Git and Node installed.
Server
# Clone this project
$ git clone https://github.com/oliveiralecca/university-sisfauna-app
# Access
$ cd university-sisfauna-app
$ cd backend
# Install dependencies
$ yarn or npm i
# Run the project
$ yarn dev:server or npm run dev:server
# The server will initialize in the <http://localhost:3333>
# You will need your own DATABASE_URL and SECRET_KEY env variables
Web
# Access
$ cd university-sisfauna-app
$ cd frontend
# Install dependencies
$ yarn or npm i
# Run the project
$ yarn dev or npm run dev
# The project will initialize in the <http://localhost:5173>
# You will need your own VITE_API_URL env variable with the backend URL
Made with 💕 by Letícia Oliveira