Варианты расписаны тут
=======
Steemit.com is the react.js web interface to the world's first and best blockchain-based social media platform. It uses STEEM, a blockchain powered by Graphene 2.0 technology to store JSON-based content for a plethora of web applications.
- Learning how to build blockchain-based web applications using STEEM as a content storage mechanism in react.js
- Reviewing the inner workings of the steemit.com social media platform
- Assisting with software development for steemit.com
# Ставим n - менеджер версий ноды
sudo npm install -g n
# Ставим последнюю версию ноды
sudo n latest
npm install
В настоящий момент Вам придётся связаться с командой запуска, чтобы получить внятные инструкции.
cd config
cp steem-example.json steem-dev.json
(note: it's steem.json in production)
на проекте используется (sequelize)[http://docs.sequelizejs.com], поэтому можно использовать например postgres вместо mysql, подправив настройки
Настройки базы данных дублируются: db/config/config.json
- используется для
создания и синхронизации таблиц; config/steem.json
/config/steem-dev.json
-
используется вебклиентом для работы с базой
brew update
brew doctor
brew upgrade
brew install mysql
mysql.server restart
sudo apt-get update
sudo apt-get install mysql-server
Подключаемся к mysql и создаём базу данных steemit_dev:
mysql -u root
> create database steemit_dev;
Ставим sequelize-cli
для всех пользователей:
npm install -g sequelize-cli pm2 mysql
Чтоы создать таблицы (а позже запустить миграцию) - запускаем sequelize db:migrate
из папки db/
.
Запуск клиента в режиме разработки -
npm start
В этом режиме вебклиент берёт настройки из файла config/steem-dev.json
- Prefer CamelCase js and jsx file names
- Prefer lower case one word directory names
- Keep stylesheet files close to components
- Component's stylesheet file name should match component name
We are using Airbnb JavaScript Style Guide with some modifications (see .eslintrc). Please run eslint in the working directory before committing your changes and make sure you didn't introduce any new styling issues.
If component requires a css rule, please use its uppercase name for the class, e.g. "Header" class for the header's root div. We adhere to BEM methodology with exception for Foundation classes, here is an example for the Header component:
<!-- Block -->
<ul class="Header">
...
<!-- Element -->
<li class="Header__menu-item">Menu Item 1</li>
<!-- Element with modifier -->
<li class="Header__menu-item--selected">Element with modifier</li>
</ul>
If you want to test it locally in production mode, just run the following commands:
npm run build
npm run prod
or via pm2:
npm run build
npm -i -g pm2 # one time
pm2 start config/process.json
Команда npm run build
запускает сборку и минификацию проекта.
Команда npm run prod
стартует собранный проект. В этом режиме вебклиент берёт
настройки из файла config/steem.json
Также, есть скрипт build_n_run_webclient.sh
, который устанавливает зависимости npm,
запускает сборку, и стартует собранный проект в терминале screen.
To report a non-critical issue, please file an issue on this GitHub project.
If you find a security issue please report details to: secure[at]steemit[dot]com
We will evaluate the risk and make a patch available before filing the issue.