-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
334c281
commit 5cbe0cb
Showing
5 changed files
with
54 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Pipfile* |
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,27 @@ | ||
FROM python:3.12 | ||
|
||
# Setup home | ||
ARG HOME="/app" | ||
ENV HOME=${HOME} | ||
|
||
# Set the working directory to app home | ||
WORKDIR ${HOME} | ||
|
||
# Set environment variables | ||
ENV PYTHONDONTWRITEBYTECODE 1 | ||
ENV PYTHONUNBUFFERED 1 | ||
|
||
# Install deps | ||
# RUN apt update \ | ||
# && apt install -y gcc python3-dev python3-pip ffmpeg | ||
|
||
# Python deps | ||
RUN pip install --upgrade pip | ||
COPY requirements.txt requirements.txt | ||
RUN pip install -r requirements.txt | ||
|
||
COPY . . | ||
|
||
EXPOSE 5000 | ||
|
||
ENTRYPOINT ./entrypoint.sh |
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,17 @@ | ||
# | ||
# Kitsune Robotics | ||
# 2020-2024 | ||
# | ||
|
||
ROOT := $(PWD) | ||
STAGEDIR := $(ROOT)/dist/ | ||
HASH := $(shell git describe --tags --always) | ||
|
||
all: help | ||
help: # List all commands and their descriptions | ||
@echo | ||
@cat Makefile | grep ': #' --color=never | sed '/^\t/d' | sed 's/: / /' | column -t -s '#' | ||
@echo | ||
|
||
setup: # Setup your local dev enviroment | ||
pipenv install -r requirements.txt |
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,8 @@ | ||
# Mission Controller UI | ||
|
||
Everything here is a WIP! | ||
|
||
The goal in here, is to package up a docker container that will serve a UI, and connect both to the database | ||
(for long term display graphs and stuff) as well as show some live info. | ||
|
||
It just needs to serve a simple web page, and generally doesn't have any way to actually input new commands/data (yet) |
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 @@ | ||
streamlit==1.32.2 |