File tree 4 files changed +796
-2
lines changed
{{cookiecutter.project_slug}}
4 files changed +796
-2
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ FROM ghcr.io/br3ndonland/inboard:fastapi-0.51-python3.11
2
2
3
3
# Use file.name* in case it doesn't exist in the repo
4
4
COPY ./app/app /app/app
5
- COPY ./app/pyproject.toml ./app/README.md /app/
5
+ COPY ./app/pyproject.toml /app/pyproject.toml
6
+ COPY ./app/README.md /app/README.md
6
7
WORKDIR /app/
7
8
ENV HATCH_ENV_TYPE_VIRTUAL_PATH=.venv
8
9
RUN hatch env prune && hatch env create production && pip install --upgrade setuptools
Original file line number Diff line number Diff line change 13
13
PIPX_VERSION=$PIPX_VERSION \
14
14
PYTHONPATH=/app
15
15
COPY ./app/app /app/app
16
- COPY ./app/pyproject.toml ./app/README.md ./app/worker-start.sh /app/
16
+ COPY ./app/pyproject.toml /app/pyproject.toml
17
+ COPY ./app/README.md /app/README.md
18
+ COPY ./app/worker-start.sh /app/worker-start.sh
17
19
RUN <<HEREDOC
18
20
python -m pip install --no-cache-dir --upgrade pip "pipx==$PIPX_VERSION"
19
21
pipx install "hatch==$HATCH_VERSION"
Original file line number Diff line number Diff line change
1
+ export default defineI18nConfig ( ( ) => ( {
2
+ // https://phrase.com/blog/posts/nuxt-js-tutorial-i18n/
3
+ // https://v8.i18n.nuxtjs.org/
4
+ // https://saimana.com/list-of-country-locale-code/
5
+ legacy : false ,
6
+ } ) )
You can’t perform that action at this time.
0 commit comments