No description
Find a file
2025-06-19 12:49:30 +02:00
.idea up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
assets float places 2025-06-19 11:48:07 +02:00
bin init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
config add icons in edit form 2025-05-27 12:17:46 +02:00
migrations ajout view email proposé pour les commerçants 2025-06-19 10:20:40 +02:00
public refacto labourage form 2025-06-18 00:41:24 +02:00
src affichage fraicheur des données 2025-06-19 12:49:30 +02:00
templates affichage fraicheur des données 2025-06-19 12:49:30 +02:00
tests init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
translations add history on stats 2025-06-17 19:38:44 +02:00
.env motocultrice labourer aussi les lieux sans email, et proposition opening hours 2025-05-29 13:24:50 +02:00
.env.dev init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
.env.test init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
.gitignore up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
cipherbliss-osm-commerce.config.caddy up templates 2025-05-26 19:03:34 +02:00
compose.override.yaml init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
compose.yaml init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
composer.json up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
composer.lock up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
labourage.sh labourage de grandes villes 2025-06-19 00:30:33 +02:00
LICENSE init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
package-lock.json ajout recherche par nom 2025-05-28 16:23:49 +02:00
package.json up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
phpunit.xml.dist init symfony repo to modify a place without account 2025-05-22 19:13:43 +02:00
README.md ajout de courbe pour stats 2025-06-06 12:17:03 +02:00
symfony.lock up handle overrides with edit questions 2025-05-27 11:18:29 +02:00
webpack.config.js up handle overrides with edit questions 2025-05-27 11:18:29 +02:00

OSM Commerces

dépot pour faire une démo de "OSM mon commerce", permettant de modifier des commerces sans avoir de compte OSM. Ce projet permet d'avoir un tableau de bord pour une zone donnée concernant la completion de commerces et autres lieux d'intérêt amenés à être mis à jour en autonomie par les personnes qui y travaillent.

Configurer .env.local pour mettre le token bearer d'un compte dédié installer les dépendances avec composer déployer sur un serveur ayant du php 8

# Dépendances

  • PHP 8.1 ou supérieur
  • Composer
  • PostgreSQL 13 ou supérieur, ou Mysql / MariaDB
  • Symfony 7.2
  • Extensions PHP requises :
    • pdo_pgsql
    • xml
    • intl
    • mbstring

base de données

créer un utilisateur et sa base

en postgresql

sudo -u postgres psql -c "CREATE USER sf WITH PASSWORD 'sfrgdHYJi56631lyshFSQGfd45452ùwdf54f8fg5dfhg5_tyfdgthIOPHFUGH';"
sudo -u postgres psql -c "CREATE DATABASE \"osm-my-commerce\" OWNER sf;"

en mysql

mysql -u root -p
CREATE USER 'sf'@'localhost' IDENTIFIED BY 'sfrgdHYJi56631lyshFSQGfd45452ùwdf54f8fg5dfhg5_tyfdgthIOPHFUGH';
CREATE DATABASE `osm-my-commerce`;
GRANT ALL PRIVILEGES ON `osm-my-commerce`.* TO 'sf'@'localhost';
FLUSH PRIVILEGES;