Skip to content

Commit

Permalink
refactor code
Browse files Browse the repository at this point in the history
Refactors the code to make it contain only the application related
components. IaS is no longer part of this codebase.
  • Loading branch information
utkarshayachit committed Oct 27, 2022
1 parent e715a55 commit 250735a
Show file tree
Hide file tree
Showing 73 changed files with 278 additions and 2,564 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__pycache__
*.egg-info*
env0
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM alpine:3.16.2
RUN apk add --no-cache \
py3-numpy \
py3-pandas \
py3-pip \
py3-psutil \
py3-redis \
py3-scipy \
python3
RUN python3 -m pip install --upgrade pip

WORKDIR /opt/azfinsim
COPY src/azfinsim src/azfinsim/
COPY *.toml ./
COPY LICENSE ./
RUN pip install -e .

ENTRYPOINT [ "/usr/bin/python3"]
CMD ["-m", "azfinsim.azfinsim", "--help"]
268 changes: 0 additions & 268 deletions README.md

This file was deleted.

26 changes: 0 additions & 26 deletions bin/build.sh

This file was deleted.

142 changes: 0 additions & 142 deletions bin/deploy.sh

This file was deleted.

31 changes: 0 additions & 31 deletions bin/destroy.sh

This file was deleted.

8 changes: 0 additions & 8 deletions bin/do_all.sh

This file was deleted.

12 changes: 0 additions & 12 deletions bin/dump.sh

This file was deleted.

13 changes: 0 additions & 13 deletions bin/generator.sh

This file was deleted.

16 changes: 0 additions & 16 deletions bin/get_keys.sh

This file was deleted.

19 changes: 0 additions & 19 deletions bin/inject.sh

This file was deleted.

27 changes: 0 additions & 27 deletions bin/prep_ubuntu.sh

This file was deleted.

7 changes: 0 additions & 7 deletions bin/redis_conn.sh

This file was deleted.

35 changes: 0 additions & 35 deletions bin/submit.sh

This file was deleted.

9 changes: 0 additions & 9 deletions bin/test_container.sh

This file was deleted.

Binary file removed data/trades.gz
Binary file not shown.
Loading

0 comments on commit 250735a

Please sign in to comment.