Skip to content

gradoally/cc-clicker-full

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRYPTOCASH FRONTEND

Writed on React + JS

npm run start

Run project in localhost:3000

npm run build

Build project. HTML5 code in /build directory

CRYPTOCASH BACKEND

Writed on Python + Flask

install dependencies

Install python from https://www.python.org/downloads/ recommendation use version (3.12.3). Then install pip from https://pip.pypa.io/en/latest/installation/. Install dependencies with command:

pip install sqlalchemy flask flask_cors

python3 main.py

Run server in localhost:5000. You need to go to /backend directory

CRYPTOCASH BOT

Writed on Python + Telebot

install dependencies

Install python from https://www.python.org/downloads/ recommendation use version (3.12.3). Then install pip from https://pip.pypa.io/en/latest/installation/. Install dependencies with command:

pip install requests pyTelegramBotAPI

python3 bot.py

Run telegram bot. You need to go to /bot directory

Answers

how to change bakcned URL?

Go to /src/constants/BASE_URL. Paste your URL without "/"

change, create or delete task?

At /backend/server file you find a table with name "tasks".To create task you need to add unique id field. Change that JSON object, and paste it to data: {"type":"special","title":"YOUR_TITLE","money":"YOUR_MONEY","icon":"ICON_NAME","tasks":[ {"title":"TITLE_OF_TASK", "url":"LINK_OF_TASK"}, {"title":"TITLE_OF_TASK", "url":"LINK_OF_TASK"}, {"title":"TITLE_OF_TASK", "url":"LINK_OF_TASK"} ]} This is a template. You can add, or delete some tasks from "tasks" key. Example of "Binance Registration" task: {"type":"special","title":"Binance Registration","money":"300 000","icon":"2.png","tasks":[ {"title":"Register account", "url":"https://accounts.binance.com/en/register"} ]}

change flags?

Change in FRONTEND: go to /src/constants/countries file. Add name of country to a "countries" list. Then go to /public/flags direction. Add a flag with country name + ".png".

change icons?

At /src/assets you can find all icons. Just change the file with icon.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published