Skip to content

Commit 01e2147

Browse files
authored
Update astro template (#24)
1 parent 0efc875 commit 01e2147

82 files changed

Lines changed: 3111 additions & 1968 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 0 additions & 42 deletions
This file was deleted.

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ root = true
55
[*]
66
charset = utf-8
77
end_of_line = lf
8+
trim_trailing_whitespace = true
89
insert_final_newline = true
910
indent_style = tab
1011
indent_size = 4
1112

1213
# Markdown
1314
[*.{md,markdown}]
15+
trim_trailing_whitespace = false
1416
indent_style = space
1517
indent_size = 2
1618

.env

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
1-
COMPOSE_PROJECT_NAME='fluffevent-votes'
21
IMAGES_PREFIX='fluffevent-votes'
32

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

6-
# HTTP ports
7-
HTTP_PORT='' # Exposed port
8-
HTTP_DOCKER_PORT='' # Container port
6+
# Docker ports
7+
# (host ports: "*_PORT"; container ports: "*_DOCKER_PORT")
8+
HTTP_PORT=''
9+
HTTP_DOCKER_PORT=''
910

10-
# Application configuration
11+
# Deployment
1112
GITHUB_REPOSITORY_URL=''
1213
GITHUB_SHA=''
14+
VERSION_TAG=''
15+
16+
# Astro
17+
ASTRO_SITE_URL=''
18+
ASTRO_BASE_PATH=''
19+
ASTRO_ASSETS_PREFIX=''
20+
21+
# Application
22+
# (Add env vars for your application here.)

0 commit comments

Comments
 (0)