All Projects → Icesofty → Digital Currency

Icesofty / Digital Currency

Licence: gpl-3.0
Create your own Digital Currency with this self-hosted Web App. Check out the Demo website

Projects that are alternatives of or similar to Digital Currency

Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+5666.67%)
Mutual labels:  self-hosted, tailwindcss
Leaguestats
📈 League of Legends Stats Web App
Stars: ✭ 172 (+473.33%)
Mutual labels:  mongodb, tailwindcss
Jong
🐍 💡 JOplin Notes Generator - project replaced by https://github.com/foxmask/yeoboseyo
Stars: ✭ 15 (-50%)
Mutual labels:  self-hosted
Mongocrypt
An encryption library for node.js
Stars: ✭ 29 (-3.33%)
Mutual labels:  mongodb
Go Isso
a commenting server similar to Disqus - rewrite isso with golang
Stars: ✭ 28 (-6.67%)
Mutual labels:  self-hosted
Treefrog Framework
TreeFrog Framework : High-speed C++ MVC Framework for Web Application
Stars: ✭ 885 (+2850%)
Mutual labels:  mongodb
Navidrome
🎧☁️ Modern Music Server and Streamer compatible with Subsonic/Airsonic
Stars: ✭ 932 (+3006.67%)
Mutual labels:  self-hosted
Analytics
Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.
Stars: ✭ 9,469 (+31463.33%)
Mutual labels:  tailwindcss
Jwt Node Vue
Repositório responsável pelo primeiro projeto da série de vídeos: Coding Stuff.
Stars: ✭ 29 (-3.33%)
Mutual labels:  mongodb
Project16 B Account Book
👥👤👥뭐야..👤👥👥👤👥👤 이거쓰면 부자된다고..?👥👤👥👤👤👥👥 웅성웅성..👤👥👤👥👤궁금하다..👥👥👤👥
Stars: ✭ 28 (-6.67%)
Mutual labels:  mongodb
Placementmnit
Official Placement Portal : MNIT Jaipur
Stars: ✭ 29 (-3.33%)
Mutual labels:  mongodb
Bloom
The simplest way to de-Google your life and business: Inbox, Calendar, Files, Contacts & much more
Stars: ✭ 934 (+3013.33%)
Mutual labels:  self-hosted
Shopify Mern Boilerplate
A Boilerplate for creating MERN stack Shopify app.
Stars: ✭ 20 (-33.33%)
Mutual labels:  mongodb
Usefonts
A tool to help designers and developers select their perfect fonts. It uses Google Fonts API to fetch the fonts.
Stars: ✭ 29 (-3.33%)
Mutual labels:  tailwindcss
Go Mongodbatlas
A Go client library for the MongoDB Atlas API
Stars: ✭ 15 (-50%)
Mutual labels:  mongodb
Ihealth site
iHealth 项目的后台程序(一个基于 Django 和 MongoDB 的 Web 后端)
Stars: ✭ 29 (-3.33%)
Mutual labels:  mongodb
Pwndrop
Self-deployable file hosting service for red teamers, allowing to easily upload and share payloads over HTTP and WebDAV.
Stars: ✭ 878 (+2826.67%)
Mutual labels:  self-hosted
Bibi
An e-commerce fullstack solution for Flask 出口电商全栈解决方案
Stars: ✭ 914 (+2946.67%)
Mutual labels:  mongodb
P2p
一个基于 python 的 flask 框架的资讯网站, http://119.29.100.53:8086/
Stars: ✭ 28 (-6.67%)
Mutual labels:  mongodb
Sapper Template Firebase
Starter Rollup template for Sapper apps with Firebase functions based on https://github.com/nhristov/sapper-template-rollup.
Stars: ✭ 29 (-3.33%)
Mutual labels:  tailwindcss

Twitter Follow GitHub stars


PLEASE NOTE

This is an early version of the final Web App. DEMO WEBSITE : https://tonken.glitch.me/

Digital-Currency

Create your own private Self-Hosted Digital Currency. This Web App require MongoDB

1 - Clone the repo

git clone https://github.com/Icesofty/Digital-Currency.git

2 - Install it

npm i 

You need to create a .env file into the root folder and put SECRET=YOUR_SUPER_SECRET_PHRASE_HERE in it

3 - Launch it

node app.js
Server started at port 3000

Access it on http://localhost:3000/

4 - Customize it

You can change the demo-1.ejs and the demo-2.ejs file if you want to. If you do so, don't forget to change the content on home.ejs (Lines 130 to 145).

You can also customize your app.js : Color theme

const colorTheme = 'purple';

Default amount of Currency when a new user register (recommend 0)

const defaultTokens = 50;

Name and symbol of your Currency

const nameOfYourToken = 'Tonken';
const tokenSymbol = 'TKN';

Public or private currency

const publicRegister = true;

Name of your MongoDB

const nameDB = 'tonkenDB';

Creating Admin user

You need to create an Admin user. Change the value of admin: false to true on the users collection in MongoDB

{
    "_id" : ObjectId("5e2d57b1a0c1870e6c736d16"),
    "username" : "Icesofty",
    "email" : "[email protected]",
    "tokens" : 50,
    "admin" : true,
    "salt" : "...",
    "hash" : "...",
    "__v" : 0
}

You can then access your admin panel here : http://localhost:3000/admin

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].