{"id":18886051,"url":"https://github.com/meldiron/almost-evades","last_synced_at":"2026-04-12T11:32:36.327Z","repository":{"id":65107589,"uuid":"581527206","full_name":"Meldiron/almost-evades","owner":"Meldiron","description":"Teamwork-based multiplayer game.","archived":false,"fork":false,"pushed_at":"2022-12-26T15:42:33.000Z","size":1063,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-27T13:50:32.227Z","etag":null,"topics":["appwrite","colyseus","kaboom-js","svelte","sveltekit","tailwindcss"],"latest_commit_sha":null,"homepage":"https://evades.almostapps.eu/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Meldiron.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-12-23T12:58:15.000Z","updated_at":"2022-12-26T10:47:17.000Z","dependencies_parsed_at":"2023-01-13T15:37:15.494Z","dependency_job_id":null,"html_url":"https://github.com/Meldiron/almost-evades","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Falmost-evades","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Falmost-evades/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Falmost-evades/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Falmost-evades/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Meldiron","download_url":"https://codeload.github.com/Meldiron/almost-evades/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239859068,"owners_count":19708857,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appwrite","colyseus","kaboom-js","svelte","sveltekit","tailwindcss"],"created_at":"2024-11-08T07:24:01.566Z","updated_at":"2026-02-23T11:30:15.332Z","avatar_url":"https://github.com/Meldiron.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Almost Cover](static/og-cover.png)\n\n# 🔴 Almost Evades\n\n\u003e Teamwork-based multiplayer game.\n\n![Almost Icon](static/favicon.png)\n\n## 🧰 Tech Stack\n\n- [Appwrite](https://appwrite.io/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Svelte Kit](https://kit.svelte.dev/)\n- [Kaboom](https://kaboomjs.com/)\n- [Colyseus](https://www.colyseus.io/)\n\n## 🛠️ Setup Server\n\n1. Setup Appwrite server\n2. Create project `almostEvades`\n3. Install Appwrite CLI\n4. Login with `appwrite login`\n5. Enter `cd backend`\n6. Deploy database structure with `appwrite deploy collection`\n7. Deploy functions with `appwrite deploy function`\n8. Set variables on deployed functions. There is `backend/functions` folder for each function. They all have `README.md` describing what variables they need\n\n## 🌐 Setup Colyseus Server\n\n1. Enter `cd backend/colyseus-server`\n2. Install dependencies `npm install`\n3. Create .env `cp .env.example .env`\n4. Edit .env `nano .env`\n5. Start server `npm start`\n\n## 👀 Setup Client\n\n1. Install libarries `npm install`\n2. Update `appwriteEndpoint` in `src/lib/appwrite.ts` (Appwrite endpoint from server setup)\n3. Start server `npm run dev`\n\n## 🚀 Deploy Client\n\n1. Deploy frontend and backend on the same domain. For example, `myapp.com` and `appwrite.myapp.com`\n2. Add frontend hostname as a platform in Appwrite project\n\n## 🛎️ Deploy Colyseus Server\n\nRun following commands to setup an instance of Colyseus server:\n\n```sh\n# Machine setup\ncurl -fsSL https://deb.nodesource.com/setup_19.x | bash - \u0026\u0026 apt-get install -y nodejs\n\n# SSL setup\nsudo snap install core; sudo snap refresh core\nsudo snap set certbot trust-plugin-with-root=ok\nsudo snap install --classic certbot\nsudo ln -s /snap/bin/certbot /usr/bin/certbot\n\nsudo apt install -y nginx\n\nnano /etc/nginx/sites-available/eu1.evades.almostapps.eu\n\n# Code to put into:\n# server {\n#     listen 80;\n#     listen [::]:80;\n#     server_name eu1.evades.almostapps.eu;\n\n#     location / {\n#         proxy_pass http://127.0.0.1:3000;\n#         proxy_set_header Host $host;\n#         proxy_set_header X-Forwarded-Proto $scheme;\n#         proxy_set_header X-Real-IP $remote_addr;\n#         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n#     }\n# }\n\nln -s /etc/nginx/sites-available/eu1.evades.almostapps.eu /etc/nginx/sites-enabled/eu1.evades.almostapps.eu\nsudo service nginx reload\nsudo snap install certbot-dns-google\n\ncertbot\n\nsudo service nginx reload\n\n# Project setup\ngit clone https://github.com/Meldiron/almost-evades.git\ncd almost-evades/backend/colyseus-server\nnpm install\n\n# Production setup\ncp .env.example .env\nnano .env # (api_key)\nnpm run build\n\n# Server start\nscreen -S colyseus\nnode lib/index.js\n```\n\n## 🤝 Contributing\n\nWhen contributing to backend-related logic, make sure to sync-up `backend/appwrite.json` by running the `appwrite init` commands in the `backend` folder.\n\n## 🖼️ Screenshots\n\n![Screenshot](screenshots/ss1.png)\n![Screenshot](screenshots/ss2.png)\n![Screenshot](screenshots/ss3.png)\n![Screenshot](screenshots/ss4.png)\n\n## 🏗️ TODOs\n\n- circle with circle collision\n- more maps\n- upgrades\n- abilities\n- claim anonymous account\n\n## 🤖 Svelte Kit Generated Documentation\n\nEverything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).\n\n## Creating a project\n\nIf you're seeing this, you've probably already done this step. Congrats!\n\n```bash\n# create a new project in the current directory\nnpm create svelte@latest\n\n# create a new project in my-app\nnpm create svelte@latest my-app\n```\n\n## Developing\n\nOnce you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\n## Building\n\nTo create a production version of your app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n\u003e To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeldiron%2Falmost-evades","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeldiron%2Falmost-evades","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeldiron%2Falmost-evades/lists"}