TMStats is a medal tracker that shows overview of all Trackmania medals an user achieved. The website allows user to share campaign, weekly, or daily maps medals with anyone.
Project focuses on multiple aspects and features:
- Track of the day (TOTD) medals
- Campaign medals
- Weekly shorts medals
- Custom map medals
- Gamified achievement & quests system
As of right now, project has no business model and is fully free and open-sourced. Project generates expenses, and business model may be added in the future.
TMStats uses multiple frontend and backend technologies with focus of simplifying the development. Main focus of tech stack in this project is to make development fast and fun, instead of making it scalable and reliable.
- TailwindCSS, a CSS library to rapidly design components using HTML classes
- Svelte, a JS library to build reactive frontend. Alongside this, application uses TypeScript
- Svelte Kit, a Svelte framework to give proejct proper structure, routing and other cool features
- Appwrite, a secure backend as a service that provides 90% of necessary backend functionality out of the box
Frontend:
- Install dependencies:
npm install
- Spin-up HTTP server:
npm run dev
- Visit localhost:3000
Backend:
You only need to spin-up backend if you man on backend changes. For frontend changes, you can skip this step as project is connected to production backend instance.
- Install Appwrite locally, or on development server
Make sure your
.env
file_APP_FUNCTIONS_RUNTIMES
variable includesdeno-2.0
runtime. This runtime is used by all functions in this project. Changes to.env
are applied using commanddocker-compose up -d
.
- Sign up into your Appwrite instance and create project with both name and ID set to
tmStats
- Install Appwrite CLI locally, and login:
appwrite login
- Deploy collections:
appwrite push collection
- Deploy functions:
appwrite push functions
To prepare your changes from your Appwrite instance database to production one:
- Pull database changes:
appwrite init collection
To create a new function:
- Create function:
appwrite init function
Make sure you create functions using
deno-2.0
runtime.
Feel free to do manual changes to appwrite.json if you are familiar with this file.
Frontend:
- Install dependencies:
npm install
- Build project:
npm run build
- Deploy to adapter of a choice
Frontend build does not use any special environment variables.
Backend:
- Deploy database changes, if necessary:
appwrite push collection
- Deploy function changes, if necessary:
appwrite push function
Everything you need to build a Svelte project, powered by sv
.
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npx sv create
# create a new project in my-app
npx sv create my-app
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.