Skip to content

Commit

Permalink
I have been busy
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchatmangpt committed Oct 16, 2024
1 parent d515bf8 commit 69f305d
Show file tree
Hide file tree
Showing 136 changed files with 54,023 additions and 354 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,5 @@ projectwithhyphenatend
.aider*

.lh
.vscode
.vscode
codebase.md
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN groupadd --gid $GID user && \
chown user /opt/
USER user

# Create and activate a virtual environment.
# Create and activate a virtual environments.
ENV VIRTUAL_ENV /opt/dspygen-env
ENV PATH $VIRTUAL_ENV/bin:$PATH
RUN python -m venv $VIRTUAL_ENV
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN --mount=type=cache,target=/var/cache/apt/ \

USER user

# Install the run time Python dependencies in the virtual environment.
# Install the run time Python dependencies in the virtual environments.
COPY --chown=user:user poetry.lock* pyproject.toml /workspaces/dspygen/
RUN mkdir -p /home/user/.cache/pypoetry/ && mkdir -p /home/user/.config/pypoetry/ && \
mkdir -p src/dspygen/ && touch src/dspygen/__init__.py && touch README.md
Expand All @@ -66,7 +66,7 @@ RUN --mount=type=cache,target=/var/cache/apt/ \
echo 'user ALL=(root) NOPASSWD:ALL' > /etc/sudoers.d/user && chmod 0440 /etc/sudoers.d/user
USER user

# Install the development Python dependencies in the virtual environment.
# Install the development Python dependencies in the virtual environments.
RUN --mount=type=cache,uid=$UID,gid=$GID,target=/home/user/.cache/pypoetry/ \
poetry install --no-interaction

Expand Down Expand Up @@ -97,7 +97,7 @@ RUN git clone --branch v$ANTIDOTE_VERSION --depth=1 https://github.com/mattmc3/a

FROM base AS app

# Copy the virtual environment from the poetry stage.
# Copy the virtual environments from the poetry stage.
COPY --from=poetry $VIRTUAL_ENV $VIRTUAL_ENV

# Copy the package source code to the working directory.
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/report/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default function DSLPage() {
<button onClick={handleClick}>Generate Assessment</button>

{/*<textarea*/}
{/* value={dsl}*/}
{/* value={llm_pipe}*/}
{/* readOnly*/}
{/* style={{ width: '100%', height: '300px' }}*/}
{/*/>*/}
Expand Down
Loading

0 comments on commit 69f305d

Please sign in to comment.