Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koval01/notcoinweb
Open source implementation of the Notcoin site using the svelte, vite and tailwind
https://github.com/koval01/notcoinweb
app application cryptocurrency javascript landing notcoin pwa pwa-apps rollup site svelte tailwind telegram typescript vite web webapp
Last synced: 5 days ago
JSON representation
Open source implementation of the Notcoin site using the svelte, vite and tailwind
- Host: GitHub
- URL: https://github.com/koval01/notcoinweb
- Owner: koval01
- License: gpl-3.0
- Created: 2024-02-06T11:14:03.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-10-17T12:59:49.000Z (28 days ago)
- Last Synced: 2024-10-19T11:08:57.571Z (26 days ago)
- Topics: app, application, cryptocurrency, javascript, landing, notcoin, pwa, pwa-apps, rollup, site, svelte, tailwind, telegram, typescript, vite, web, webapp
- Language: Svelte
- Homepage: https://notcoin-a69.pages.dev
- Size: 3.46 MB
- Stars: 37
- Watchers: 2
- Forks: 43
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# notco.in
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.## Overview
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.
## Deployment
### Cloudflare Pages
To deploy the application on Cloudflare Pages, follow these steps:
1. Fork this repository.
2. Log in to your Cloudflare account or sign up for a new account if you don't have one.
3. Navigate to the Cloudflare Pages dashboard.
4. Click on "Create a project" and select your GitHub repository.
5. Configure the build settings as needed.
6. Deploy the application.### Own Server (Using Nginx)
To deploy the application on your own server using Nginx, follow these steps:
1. Clone this repository onto your server.
2. Install Node.js if not already installed.
3. Navigate to the project directory and install dependencies using `npm i`.
4. Build the project using `npm run build`.
5. Configure Nginx to serve the built files. Below is a sample Nginx configuration:```nginx
server {
listen 80;
server_name your_domain.com;location / {
root /var/www/notco.in/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
}
```6. Restart Nginx.
### Local Development
To set up the application for local development, follow these steps:
1. Clone this repository onto your local machine.
2. Install Node.js if not already installed.
3. Navigate to the project directory and install dependencies using `npm i`.
4. Start the development server using `npm run dev`.
5. Open your browser and navigate to `http://localhost:8080` to view the application.## Contributing
Contributions are welcome! If you'd like to contribute to this project, please see our [contributing guidelines](CONTRIBUTING.md) for more information.
## License
This project is licensed under the [GNU License](LICENSE).