Compare commits

2 Commits

Author SHA1 Message Date
Florian THIERRY
13c2cc8118 Add frontend. 2024-03-27 10:28:33 +01:00
Florian THIERRY
431d365d20 Move backend files into a sub folder. 2024-03-27 10:28:22 +01:00
173 changed files with 17129 additions and 0 deletions

44
.gitignore vendored
View File

@@ -38,3 +38,47 @@ build/
**/.angular **/.angular
**/pictures-folder **/pictures-folder
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
# Node
/node_modules
npm-debug.log
yarn-error.log
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings
# System files
.DS_Store
Thumbs.db

View File

@@ -40,6 +40,7 @@ public class AuthorBuilder {
} }
public Author build() { public Author build() {
//
return new Author(id, name, image); return new Author(id, name, image);
} }
} }

Some files were not shown because too many files have changed in this diff Show More