diff --git a/dockerfile b/dockerfile index 84a499b..36948e9 100644 --- a/dockerfile +++ b/dockerfile @@ -18,8 +18,5 @@ COPY static static # Expose the port the app runs on EXPOSE 5000 -# Set environment variables -ENV FLASK_APP=app.py - # run the application ENTRYPOINT [ "gunicorn", "-b", ":5000", "--access-logfile", "-", "--error-logfile", "-", "src.wsgi:app" ] \ No newline at end of file diff --git a/src/routes/snake.py b/src/routes/snake.py index 3d354b2..b9f39b1 100644 --- a/src/routes/snake.py +++ b/src/routes/snake.py @@ -46,7 +46,7 @@ def valid_score(score, game_token): current_time = datetime.datetime.now() elapsed_time = (current_time - start_time).total_seconds() - if elapsed_time < score / 10 * 5 + 15: # assuming that each point takes 3 seconds to achieve and 15 seconds to start the game and do captcha + if elapsed_time < score / 10 * 5 + 15: # assuming that each point takes 5 seconds to achieve and 15 seconds to start the game and do captcha log.error("Score is too high for the elapsed time.") return False diff --git a/templates/index.html b/templates/index.html index 655fdf5..eae876b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -104,6 +104,16 @@
+ I have updated the site a bit, I have added a few more featues, but the main update is that the site is now using flask as a backend. + I didn't want to use a framework at first, mainly because I like the simplicity of a static site, but it allows me to use templatiing and makes + adding new features easier and more organized. The site is also more interacive now, with a few secrets on some of the pages. I still plan on adding + more secrets and features. I also plan on adding a blog section, that I will move this to, so that I can give updates on the site and other things + that I find interesting. +
+