diff --git a/.gitignore b/.gitignore
index cd9275db..654d5e1a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,6 @@ node_modules
.env
.DS_Store
replica.key
+deploy/dev
+!deploy/dev/docker-compose.yml
+set-env.sh
diff --git a/packages/api-server/src/services/submission.services.ts b/packages/api-server/src/services/submission.services.ts
index a926f417..f8cfdc16 100644
--- a/packages/api-server/src/services/submission.services.ts
+++ b/packages/api-server/src/services/submission.services.ts
@@ -45,7 +45,6 @@ async function createSubmission ({ submission, userId, target }: { submission: N
const task: CompilingTask = {
submissionId,
- problemId: problem.id,
type: JudgerTaskType.Compiling,
source: submission.source,
language: submission.language,
diff --git a/packages/judge-daemon/.gitignore b/packages/judge-daemon/.gitignore
index 76add878..d8ac1ef6 100644
--- a/packages/judge-daemon/.gitignore
+++ b/packages/judge-daemon/.gitignore
@@ -1,2 +1,4 @@
node_modules
-dist
\ No newline at end of file
+dist
+box-metas
+argon-cache
diff --git a/packages/judge-daemon/bits/stdc++.h b/packages/judge-daemon/bits/stdc++.h
new file mode 100644
index 00000000..b3a186db
--- /dev/null
+++ b/packages/judge-daemon/bits/stdc++.h
@@ -0,0 +1,117 @@
+// C++ includes used for precompiling -*- C++ -*-
+
+// Copyright (C) 2003-2015 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// Under Section 7 of GPL version 3, you are granted additional
+// permissions described in the GCC Runtime Library Exception, version
+// 3.1, as published by the Free Software Foundation.
+
+// You should have received a copy of the GNU General Public License and
+// a copy of the GCC Runtime Library Exception along with this program;
+// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
+// .
+
+/** @file stdc++.h
+ * This is an implementation file for a precompiled header.
+ */
+
+// 17.4.1.2 Headers
+
+// C
+#ifndef _GLIBCXX_NO_ASSERT
+#include
+#endif
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+#if __cplusplus >= 201103L
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#endif
+
+// C++
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include