Steem Editor is a smart editor for steem. Its purpose is to enhance the writing experience of writers in the steem community.
git clone https://github.com/ety001/steem-editor.git
cd steem-editor
composer install
Before deploying , please edit your .env file to make sure the connection informaiton right.
And then run this command.
php artisan migrate
php artisan storage:link
php artisan serve
npm install
npm run watch
npm run production
wget https://raw.githubusercontent.com/steemfans/steemeditor/master/.env.example
mv .env.example .env
edit .env file to satisfy your environment
pull the docker image
docker pull steemfans/steemeditor
create a database
migrate db
docker run -it --rm \
--env-file .env \
steemfans/steemeditor \
php artisan migrate
docker run -itd --name steemeditor \
--restart always \
-p 8080:8080 \
--env-file .env \
-v /data/public:/var/www/html/storage/app/public \
-v /data/logs:/var/www/html/storage/logs \
steemfans/steemeditor
vim /shell/voter.sh
docker run --rm \
-e DB_HOST=172.20.0.3 \
-e DB_PORT=3306 \
-e DB_USER=steem-editor \
-e DB_PASS=123456 \
-e STEEM_POST_KEY=your_posting_key \
ety001/steemeditor_voter
chmod +x /shell/voter.sh
crontab -e
0 0 * * * /shell/voter.sh
Before the stable version, coontribution is not accepted.
Content type
Image
Digest
Size
57.7 MB
Last updated
about 6 years ago
docker pull steemfans/steemeditor