Welcome to the notco.in repository! This repository contains a Svelte web application for viewing statistics related to the game Notcoin. Please note that this application is built using regular Svelte, not SvelteKit. Also note that this is an unofficial version of the site. And only its open source implementation.
The purpose of this application is to provide users with a platform to view statistics related to the game Notcoin. Whether you're interested in tracking player scores, analyzing game data, or simply exploring insights, notco.in has got you covered.
To deploy the application on Cloudflare Pages, follow these steps:
To deploy the application on your own server using Nginx, follow these steps:
Clone this repository onto your server.
Install Node.js if not already installed.
Navigate to the project directory and install dependencies using npm i
.
Build the project using npm run build
.
Configure Nginx to serve the built files. Below is a sample Nginx configuration:
server {
listen 80;
server_name your_domain.com;
location / {
root /var/www/notco.in/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
}
Restart Nginx.
To set up the application for local development, follow these steps:
npm i
.npm run dev
.http://localhost:8080
to view the application.Contributions are welcome! If you'd like to contribute to this project, please see our contributing guidelines for more information.
This project is licensed under the GNU License.