Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koval01/tonview-svelte
Ton explorer on Svelte with Framework7
https://github.com/koval01/tonview-svelte
cloudflare-pages framework7 javascript notcoin postcss svelte sveltejs tailwind tailwindcss telegram ton toncoin typescript vite
Last synced: 28 days ago
JSON representation
Ton explorer on Svelte with Framework7
- Host: GitHub
- URL: https://github.com/koval01/tonview-svelte
- Owner: koval01
- Created: 2024-06-15T20:44:23.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T21:59:25.000Z (about 2 months ago)
- Last Synced: 2024-09-29T10:51:06.405Z (about 1 month ago)
- Topics: cloudflare-pages, framework7, javascript, notcoin, postcss, svelte, sveltejs, tailwind, tailwindcss, telegram, ton, toncoin, typescript, vite
- Language: Svelte
- Homepage: https://ton.koval.page
- Size: 1.14 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# svelte-app
Welcome to the svelte-app repository! This repository contains a Svelte web application for various purposes. 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.## 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.