-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3661 from KBVE/dev
Preparing Alpha Branch
- Loading branch information
Showing
30 changed files
with
1,360 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,31 @@ import { Adsense } from '@kbve/astropad'; | |
|
||
## Notes | ||
|
||
### 2024 | ||
## 2025 | ||
|
||
- 12:30PM | ||
|
||
**Hardcore** | ||
|
||
I did not get a chance to write the story of yesterday or well this mornings hardcore event, it was way too wild. | ||
Next round, I am going to keep it a bit more chill and slow, moving too fast is part of the problem. | ||
Treat it more like a RTS than a MMO, is the best way that I can describe the hardcore flow! | ||
|
||
- 03:34PM | ||
|
||
**EoY** | ||
|
||
The End of the Year reports as well as Q4s are going to be rough if the trade deals move forward. | ||
Hmm, I can get furthere down into the notes for that on a different page, but once the tariffs kicks. | ||
|
||
- 04:24PM | ||
|
||
**Python** | ||
|
||
Updating the python package for nx, to `20.3.1` via `pnpm add @nxlv/[email protected]`. | ||
This upgrade could break somethings, but just want to make sure it all works. | ||
|
||
## 2024 | ||
|
||
- 6:05am - Getting ready for work and double checking my accounts for 2024! | ||
I need to adjust my morning gym routine, I might have to get up earlier. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[flake8] | ||
exclude = | ||
.git, | ||
__pycache__, | ||
build, | ||
dist, | ||
.tox, | ||
venv, | ||
.venv, | ||
.pytest_cache | ||
max-line-length = 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.9.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Base image with Python and Poetry pre-installed | ||
FROM python:3.11-slim | ||
|
||
# Set environment variables for Poetry and Python | ||
ENV PYTHONUNBUFFERED=1 \ | ||
PIP_NO_CACHE_DIR=1 \ | ||
POETRY_VERSION=1.8.2 \ | ||
POETRY_HOME="/opt/poetry" \ | ||
POETRY_VIRTUALENVS_IN_PROJECT=true \ | ||
POETRY_NO_INTERACTION=1 | ||
|
||
# Install system dependencies and Poetry | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
curl \ | ||
git \ | ||
&& curl -sSL https://install.python-poetry.org | python3 - \ | ||
&& ln -s /opt/poetry/bin/poetry /usr/local/bin/poetry \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Set working directory | ||
WORKDIR /app | ||
|
||
# Copy only the relevant files for dependency installation first | ||
COPY pyproject.toml poetry.lock ./ | ||
|
||
# Install dependencies with Poetry (including project dependencies) | ||
RUN poetry install --no-root --only main | ||
|
||
# Copy the rest of the app code | ||
COPY . . | ||
|
||
# Install the project itself (if it's structured as a package) | ||
RUN poetry install --no-dev | ||
|
||
# Set the default command to run the application | ||
CMD ["poetry", "run", "python", "-m", "pydiscordsh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# pydiscordsh | ||
|
||
Project description here. |
Empty file.
Oops, something went wrong.