Skip to content

fix: startup issue where movement can't be generated #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,10 @@ ENV/
.spyderproject

# Rope project settings
.ropeproject
.ropeproject

# test storage
environment/frontend_server/storage/test-*

# vscode
.vscode/settings.json
Empty file.
9 changes: 1 addition & 8 deletions environment/frontend_server/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,11 @@
{% endblock content %}

<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>

{% block js_content %}
{% endblock js_content %}

<script type="text/javascript" id="clustrmaps" src="//clustrmaps.com/map_v2.js?d=Xha1v8a6ENHDAgZ2dJoH85LCl6H1VwpYfgwfbgau8r4&cl=ffffff&w=a"></script>
<style type="text/css">
#clustrmaps-widget-v2 {
display: none !important
}
</style>
</body>
</html>

Expand Down
2 changes: 1 addition & 1 deletion environment/frontend_server/translator/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def home(request):
with open(f_curr_step) as json_file:
step = json.load(json_file)["step"]

os.remove(f_curr_step)
# os.remove(f_curr_step)

persona_names = []
persona_names_set = set()
Expand Down