Description
Project deployment
Working tools
Schedule
Author
License
AnimeListify is an application for anime tracking, where you can save your animes, and order in list.
docker-compose up -dCreate a network
docker network create testStarting frontend
docker build -t frontend:v1 .\frontend\
docker run -d --name frontendA --network test -p 8080:80 frontend:v1Starting backend
docker build -t backend:v1 .\backend\
docker run -d --name backendA --network test -p 8081:8081 backend:v1Starting database
docker run -d --network test --name postgresql -e POSTGRES_USER=user -e POSTGRES_PASSWORD=pass -e POSTGRES_DB=db -p 5432:5432 -v data:/var/lib/pgsql/data postgresThese are the different tools that we are going to use in the project:
mindmap
id)Ruth Maria Rodriguez Simon(
gantt
dateFormat YYYY-MM-DD
title Development chronology
section Prototype
Desing on Figma :crit, d1,2023-06-16, 12h
section Backend
Scrapping :crit, after d1, 2023-06-17
Database :crit, after d1, 2023-06-20
section Frontend
API Conection :crit, 2023-06-17, 2023-06-18
Srapping Conection :crit, 2023-06-17, 2023-06-18
Create views :crit, 2023-06-17, 2023-06-20
section Deploy
Dockerize the app :crit, 2023-06-20, 2023-06-20, 3h
Deploy to Github Pages :crit, 2023-06-20, 2023-06-20, 1h
Copyright (c) 2023 AnimeListify
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

