Skip to content

Commit

Permalink
Rewrite (#51)
Browse files Browse the repository at this point in the history
complete rewrite of the program, this addresses #49
  • Loading branch information
JimAppreciator512 authored Mar 29, 2024
2 parents 7493fec + 34082aa commit 7563044
Show file tree
Hide file tree
Showing 45 changed files with 975 additions and 2,281 deletions.
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
venv/
__pycache__/
*.pyc
Dockerfile
LICENSE
readme.md
*.sh
docker-compose.yml

10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
node_modules
package-lock.json
config.json
*.core
*.db
__pycache__/
*.pyc
venv/
.env
*.pickle
*.log
logs/

11 changes: 0 additions & 11 deletions .prettierrc

This file was deleted.

16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# syntax=docker/dockerfile:1
FROM python:3.11

# app workdir
WORKDIR /app

# copying files
COPY . /app/

# building
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
RUN mkdir -p /app/logs

# running the app
CMD ["python3", "main.py"]

107 changes: 0 additions & 107 deletions app.js

This file was deleted.

30 changes: 0 additions & 30 deletions commands/about.js

This file was deleted.

Loading

0 comments on commit 7563044

Please sign in to comment.