Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

para restaurar #15

Open
wants to merge 48 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
7198ccf
init commet
realredy Sep 21, 2022
795ba84
primeros cambios error inicial
realredy Sep 22, 2022
cff4f25
mommen where works
realredy Oct 8, 2022
5f6df04
mas ejercicios sobre injeccion de elementos
realredy Oct 29, 2022
85d726c
antes de intentar conectar con mysql
realredy Nov 12, 2022
f5a381d
avance con el loguin: finalizado
realredy Nov 20, 2022
c2af543
event register sucessfully
realredy Dec 2, 2022
5e3f10d
message error and cookies saved working
realredy Dec 3, 2022
e57b437
work with styles in backend
realredy Dec 3, 2022
aa04448
logIn - logOut ready, next install webpack
realredy Dec 4, 2022
a8c9ae0
sass webpack babel work fine
realredy Dec 4, 2022
92ac95d
beffore try install a wissing editor
realredy Dec 6, 2022
d185680
CKEditor installed -Font awesome install trhow CDN
realredy Dec 6, 2022
b986e71
New features in styles and form new date pic
realredy Dec 8, 2022
902b8d6
finish form and styles for upload post
realredy Dec 8, 2022
53282ce
added media selector
realredy Dec 11, 2022
a14cd98
added friendly url and script for show image
realredy Dec 16, 2022
f7cd9e9
added first metadata languaje
realredy Dec 17, 2022
1a258fd
category finished
realredy Dec 18, 2022
4ccd62f
end work with categories: segurity to delette
realredy Dec 25, 2022
8c429d0
beffore process post controller
realredy Dec 26, 2022
fbeefab
upload post ready
realredy Dec 28, 2022
84e83c8
image filter for blog finished
realredy Dec 29, 2022
c64b7f0
enhancement in blog list
realredy Dec 29, 2022
f96afae
fild fieds to beffore eddit
realredy Jan 1, 2023
c82e522
eddited post finish, problem whit publishe-draft
realredy Jan 1, 2023
6de4f3a
status document set and get finished
realredy Jan 2, 2023
4e85301
finished works with status
realredy Jan 4, 2023
6c90c5a
inspect post finished
realredy Jan 6, 2023
3502768
init config home items - CKEditor configured
realredy Jan 7, 2023
e36433b
home data and feature to perform the code names classe
realredy Jan 14, 2023
977c16f
eddit finnish
realredy Jan 16, 2023
1c6a144
design items crud finished
realredy Jan 22, 2023
a8b4173
web section end
realredy Jan 28, 2023
ff69c98
Jobs added sucessfuly
realredy Feb 1, 2023
ad224b3
works saved sucessfully
realredy Feb 4, 2023
afbbdc5
jobs complete chuds
realredy Feb 5, 2023
7a2a462
put script of webrange outside
realredy Feb 7, 2023
9f4bb2d
crud of works ready, page btn added
realredy Feb 11, 2023
c81c09c
delette post action finish
realredy Feb 12, 2023
c3a89c4
added styles to html constructor
realredy Jan 3, 2024
e56acb7
added create pages
realredy Jan 8, 2024
5430d71
added page controller
realredy Jan 23, 2024
b8e6147
added page-list
realredy Jan 23, 2024
48289b5
Added page eddit finished
realredy Jan 24, 2024
48b3dbb
create faqs CRUD
realredy Jan 28, 2024
22e2f30
added new database sourse and work section
realredy Feb 16, 2024
1ac9799
stable vs
realredy Nov 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions .docker/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
COMPOSE_PROJECT_NAME=symfony_dockerized
MYSQL_ROOT_PASSWORD=hello
MYSQL_ROOT_PASSWORD=elapache
MYSQL_DATABASE=app_db
MYSQL_USER=app_user
MYSQL_PASSWORD=helloworld
MYSQL_USER=pocho
MYSQL_PASSWORD=elapache

TIMEZONE=Europe/Madrid
1 change: 1 addition & 0 deletions .docker/.env.nginx.local
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NGINX_BACKEND_DOMAIN='dev.symfony-docker.com'
39 changes: 35 additions & 4 deletions .docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ version: "3"

services:
db:
image: mysql:8.0.23
platform: linux/x86_64
image: mysql
# platform: linux/x86_64
# The mysql_native_password authentication plugin is statically
# linked into the server, so no installation is necessary.
command: --default-authentication-plugin=mysql_native_password
volumes:
- "db_app:/var/lib/mysql"
Expand All @@ -22,21 +24,50 @@ services:
args:
TIMEZONE: ${TIMEZONE}
volumes:
- symfony_dockerized_app_sync:/var/www/symfony/
- ../:/var/www/symfony/
networks:
- symfony
nginx:
build:
context: ./nginx
volumes:
- symfony_dockerized_app_sync:/var/www/symfony/
- ../:/var/www/symfony/
ports:
- 80:80
networks:
- symfony
env_file:
- .env.nginx.local

mongo:
image: mongo:latest
# constainer_name: este es el nombre que debo usar para la coneccion con symfony
container_name: mongodbN
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: mongopwd
networks:
- symfony
ports:
- 27017:27017

mongo-express:
image: mongo-express:latest
container_name: mongoexP
ports:
- 8081:8081
environment:
# ME_CONFIG_MONGODB_SERVER: mongodbN
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: mongopwd
ME_CONFIG_MONGODB_URL: mongodb://root:[email protected]:27017
links:
- mongo
depends_on:
- mongo
networks: #network es necesario para poder conectar con mongo
- symfony

volumes:
symfony_dockerized_app_sync:
external: true
Expand Down
5 changes: 4 additions & 1 deletion .docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM php:8.1-fpm-buster
FROM php:8.2-fpm-buster
ARG TIMEZONE

COPY php.ini /usr/local/etc/php/conf.d/docker-php-config.ini
# si no funciona la activacion del ssl primerno desinstala mongodb
# pecl uninstall mongodb instalas el ssl y regresa a instalar mongo
# RUN apt install libcurl4-openssl-dev pkg-config libssl-dev unzip -y

RUN apt-get update && apt-get install -y \
gnupg \
Expand Down
19 changes: 0 additions & 19 deletions .editorconfig

This file was deleted.

33 changes: 28 additions & 5 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
COMPOSE_PROJECT_NAME=symfony_dockerized
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
Expand All @@ -15,12 +14,36 @@ COMPOSE_PROJECT_NAME=symfony_dockerized
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration

APP_SECRET=6cdd7f35b31809e9a09b822a1d1e65ecd488ba4d
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=c3cd9bdb8f3190425d864f3eb23559d3
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#TRUSTED_HOSTS='^(localhost|example\.com)$'
###< symfony/framework-bundle ###

###> symfony/mailer ###
# MAILER_DSN=null://null
###< symfony/mailer ###

###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://db_user:[email protected]:3306/db_name?serverVersion=5.7&charset=utf8mb4"
DATABASE_URL=mysql://db_user:[email protected]:3306/db_name?serverVersion=8.0.23
###< doctrine/doctrine-bundle ###
DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=8&charset=utf8mb4"
# DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=14&charset=utf8"
###< doctrine/doctrine-bundle ###

###> doctrine/mongodb-odm-bundle ###
# MONGODB_URL=mongodb://root:mongopwd@mongodbN:27017
# MONGODB_DB=finaly
# SECRETNAME_KOOKIE=ResultsOfLogued
# TIME_ACTIVE_COOKIE=86400 #24H
###< doctrine/mongodb-odm-bundle ###


# CONECCION ACTUAL ! FUNCIONA ! MONGODB_URL="mongodb+srv://ricardo:[email protected]/?retryWrites=true&w=majority&connectTimeoutMS=300000"
MONGODB_URL="mongodb://pochAdmin:[email protected]:27017/?authSource=admin"
MONGODB_DB=pageDBS
SECRETNAME_KOOKIE=ResultsOfLogued
TIME_ACTIVE_COOKIE=86400
18 changes: 17 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,20 @@
/var/
/vendor/
###< symfony/framework-bundle ###
/.docker/.env.nginx.local

###> symfony/phpunit-bridge ###
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###

###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###

###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###
Loading