Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f7c0c61
Move app files to service dir
matiboux Mar 25, 2026
ea1a654
Update editorconfig
matiboux Mar 25, 2026
83d5712
Update ignore files
matiboux Mar 25, 2026
4ebe375
Update docker config
matiboux Mar 25, 2026
bf9f889
Update site config
matiboux Mar 25, 2026
2b9a5ec
Update copyright years
matiboux Mar 25, 2026
289bc9a
Update README
matiboux Mar 25, 2026
637205a
Update workflows
matiboux Mar 25, 2026
98d62b3
Update npm scripts
matiboux Mar 25, 2026
7ea9477
Update deps
matiboux Mar 25, 2026
14882e8
Update deps
matiboux Mar 25, 2026
4d48dae
Update astro config
matiboux Mar 25, 2026
b7f14cb
Update css style files
matiboux Mar 25, 2026
256a624
Add tests & their config
matiboux Mar 25, 2026
2520bba
Update i18n config
matiboux Mar 25, 2026
284d679
Add nginx configuration template
matiboux Mar 25, 2026
f7734e8
Update Base layout
matiboux Mar 25, 2026
7c1b106
Update i18n types
matiboux Mar 25, 2026
8575387
Fix redirectToDefaultLocale i18n config
matiboux Mar 25, 2026
d2942ca
Update site config
matiboux Mar 25, 2026
d17c4aa
Update i18n src files
matiboux Mar 25, 2026
a86f2e8
Update deps
matiboux Mar 25, 2026
f3c7e29
Set astro template commit hash
matiboux Mar 25, 2026
f4129de
Register english i18n locale
matiboux Mar 25, 2026
3e577fa
Set is:inline to plotlyjs script tags
matiboux Mar 25, 2026
7916e09
Fix i18n locales
matiboux Mar 25, 2026
c9c9da7
Import i18n locale files
matiboux Mar 25, 2026
60a9fdd
Merge branch 'fix/astro-build' into feat/astro-template-update
matiboux Mar 26, 2026
b0a1e4a
Fix title in e2e test
matiboux Mar 26, 2026
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
42 changes: 0 additions & 42 deletions .dockerignore

This file was deleted.

2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 4

# Markdown
[*.{md,markdown}]
trim_trailing_whitespace = false
indent_style = space
indent_size = 2

Expand Down
22 changes: 16 additions & 6 deletions .env
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
COMPOSE_PROJECT_NAME='fluffevent-votes'
IMAGES_PREFIX='fluffevent-votes'

# Override these values with your own in `.env.local`:
# -- Override the values below with your own in `.env.local`.
# -- Leave values empty to use defaults.

# HTTP ports
HTTP_PORT='' # Exposed port
HTTP_DOCKER_PORT='' # Container port
# Docker ports
# (host ports: "*_PORT"; container ports: "*_DOCKER_PORT")
HTTP_PORT=''
HTTP_DOCKER_PORT=''

# Application configuration
# Deployment
GITHUB_REPOSITORY_URL=''
GITHUB_SHA=''
VERSION_TAG=''

# Astro
ASTRO_SITE_URL=''
ASTRO_BASE_PATH=''
ASTRO_ASSETS_PREFIX=''

# Application
# (Add env vars for your application here.)
Loading
Loading