Skip to content

Commit ace1c03

Browse files
committed
Fixes lint issues
1 parent fb4d35d commit ace1c03

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ENV_VARIABLE_ONE=<your_environment_variable_value_one>
2-
ENV_VARIABLE_TWO=<your_environment_variable_value_two>
2+
ENV_VARIABLE_TWO=<your_environment_variable_value_two>

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
# !!IMPORTANT!!
19-
# THIS SECTION SHOULD NOT BE MODIFIED AS
19+
# THIS SECTION SHOULD NOT BE MODIFIED AS
2020
# IT IS USED TO MAKE THIS IMAGE COMPATIBLE WITH CODER
2121
#######################################################################
2222
ARG USER=coder
@@ -32,4 +32,4 @@ WORKDIR /home/${USER}
3232
COPY --chown=${USER}:${USER} . /home/${USER}/aieng-template-implementation
3333

3434
# Start the container and run the project setup script
35-
CMD ["bash", "aieng-template-implementation/scripts/setup.sh"]
35+
CMD ["bash", "aieng-template-implementation/scripts/setup.sh"]

GUIDELINES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ These guidelines are recommended for anyone creating a repository using this tem
44

55
## Repository Name
66

7-
Choose a repository name that reflects the main topic of your reference implementations. Avoid generic terms like 'workshop', 'bootcamp', 'reference', or 'implementations'. Instead, use a concise topic name that best describes the content.
7+
Choose a repository name that reflects the main topic of your reference implementations. Avoid generic terms like 'workshop', 'bootcamp', 'reference', or 'implementations'. Instead, use a concise topic name that best describes the content.
88

99
**Example:** Use `retrieval-augmented-generation` if your repository contains reference implementations for RAG concepts. Select a single, descriptive topic name for the project.
1010

scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ echo "Jupyter kernel installed."
1919

2020
# Start Jupyter lab
2121
echo "Starting Jupyter lab..."
22-
uv run jupyter lab --no-browser --port=8888 --ip=0.0.0.0
22+
uv run jupyter lab --no-browser --port=8888 --ip=0.0.0.0

0 commit comments

Comments
 (0)