Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
540cf5a
Initial meiosis pattern
mrharpo Jan 22, 2024
9b8a176
Adds fen and moves components
mrharpo Jan 23, 2024
c6834a6
Refactors components to cellular functions
mrharpo Jan 23, 2024
a3398d9
Working layout with collapsables!
mrharpo Jan 25, 2024
23620f6
Working PGN / FEN copy with font awesome icons!
mrharpo Jan 25, 2024
e5d45bd
Adds responsive css with wrapper for board
mrharpo Jan 26, 2024
3f4bc36
Migrates to Vite
mrharpo Feb 2, 2024
4fec90d
Better state storage and retrieval, with history and highlighting
mrharpo Feb 2, 2024
0500773
Loads moves into state
mrharpo Feb 2, 2024
1fc34b6
Splits components into separate files
mrharpo Feb 3, 2024
1d92cdb
Splits Game component to own file
mrharpo Feb 3, 2024
ef45755
Start new game button
mrharpo Feb 3, 2024
8bf56ff
Adds orientation to state, with flip button
mrharpo Feb 3, 2024
4228a5d
Working history buttons!
mrharpo Feb 3, 2024
684a8f8
Highlight current move in History
mrharpo Feb 3, 2024
aead051
Adds arrow key navigation
mrharpo Feb 3, 2024
5ff9d28
Moves HistoryService to separate file
mrharpo Feb 4, 2024
2fd5ee2
Configure Vite to watch files
mrharpo Feb 4, 2024
baaa8e8
Fixes history check bug
mrharpo Feb 4, 2024
b6de128
Refactor Auth: working login!
mrharpo Feb 4, 2024
931adcd
User icon and profile page
mrharpo Feb 4, 2024
f254af9
Cleaner login logic
mrharpo Feb 4, 2024
59ea815
Migrates Toolbar to own file
mrharpo Feb 5, 2024
c147a5a
Initial connector logic and component
mrharpo Feb 5, 2024
71f871c
Partial MIDI connection logic
mrharpo Feb 5, 2024
f07bc27
Partial Launchpad detection
mrharpo Feb 6, 2024
fe08ce9
Detects connected launchpads
mrharpo Feb 6, 2024
c718bb0
WIP - Store launchpads by id
mrharpo Feb 8, 2024
058cabb
Merge branch 'main' into meiosis
mrharpo Apr 1, 2024
60df33c
Removes duplicate js files
mrharpo Apr 2, 2024
624d28e
Formats User as table of key: value pairs
mrharpo Apr 6, 2024
dad97ab
Cleaner connect / disconnect logic
mrharpo Apr 6, 2024
c11bd24
Fixes duplicate event handlers for connect init
mrharpo Apr 6, 2024
1bb2cfd
Updates to latest dependencies
mrharpo Apr 7, 2024
7a4b8bc
Refactors launchpad detection process
mrharpo Apr 7, 2024
8f8642c
Adds LaunchpadService to toggle live mode
mrharpo Apr 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
FROM python
FROM node:alpine
WORKDIR /app
RUN pip install -U pip wheel
COPY requirements.txt api.py /app/
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 443

CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "443", "--ssl-certfile=/app/launchchess.com.pem"]
CMD npm run dev
Loading