Skip to content

Commit

Permalink
Prepare v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar Oostendorp committed May 25, 2024
1 parent 84dd667 commit ea88251
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,9 @@ COPY . .
# Your app binds to port 8080 so you'll use the EXPOSE instruction to have it mapped by the docker daemon
EXPOSE 8080

ENV ACCOUNT_ADDRESS=0x0
ENV ACCOUNT_PK=0x0
ENV STORAGE_DIR="/app/storage"

# Define the command to run your app using CMD which defines your runtime
CMD [ "ts-node", "src/server.ts" ]
CMD [ "ts-node", "src/index.ts" ]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# server
NodeExpress backend for "bots" and other optimizations

Version 0.3.2
Version 0.3.3
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pixelaw-server",
"description": "NodeExpress backend for \"bots\" and other optimizations",
"version": "0.3.2",
"version": "0.3.3",
"main": "index.js",
"license": "MIT",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/QueueHandler/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ function log(message: string) {
}
}


process.on('message', async (message: Message) => {
if (message.cmd === 'start') {
running = true;
Expand Down

0 comments on commit ea88251

Please sign in to comment.