1
0
Fork
You've already forked todoList
0
No description
  • TypeScript 58.4%
  • PHP 36.3%
  • HTML 3.6%
  • Shell 1.4%
  • CSS 0.3%
2026年07月08日 21:35:51 +02:00
angular-front Warn upfront when user is not logged in 2026年07月08日 21:35:51 +02:00
buildSrc Mutualize code in buildSrc 2026年01月03日 14:52:51 +01:00
gradle Initialize gradle project 2025年11月16日 16:35:37 +01:00
symfony-server Rm XSRF token 2026年06月21日 11:10:02 +02:00
.gitattributes Initialize gradle project 2025年11月16日 16:35:37 +01:00
.gitignore add cats-report to gitignore 2026年04月21日 23:25:56 +02:00
build.gradle Don't duplicate OpenApiGenerator version 2025年12月29日 15:36:39 +01:00
gradle.properties Initialize gradle project 2025年11月16日 16:35:37 +01:00
gradlew Fix gradlew permissions 2026年01月01日 15:46:32 +01:00
gradlew.bat Initialize gradle project 2025年11月16日 16:35:37 +01:00
openapi-login.yaml login cannot return failureCredentials on 200 2026年06月21日 20:57:41 +02:00
openapi.yaml Add endpoint PATCH /api/lists 2026年05月27日 11:24:32 +02:00
README.md Add instructions in README to set up database 2026年02月24日 00:02:22 +01:00
settings.gradle Generate angular sources where they should be 2025年12月27日 23:26:29 +01:00

A PHP (+ angular) app to handle todo lists

Prerequisite to dev with this repo

Running the debug server

From the root of the repo run:

./gradlew startDebugServer

This will automatically build the front and launch the Symfony debug server.

Building and installing the app on a webserver

From the root of the repo run:

./gradlew buildArchive

this will create a directory dist at the root of the repo.

Copy this on your web server; see the symfony instructions about configuring a web server.

Then, to set up the database, run, from your web server filesystem:

php bin/console doctrine:database:create
php bin/console doctrine:schema:create