Meme site for Monero. You can submit memes and get paid.
Go to file
dev 012094bd65 Make API page accessible again 2022-04-24 19:34:26 -05:00
app Add API back and pagination 2022-04-24 19:25:31 -05:00
bootstrap Initial Commit 2021-07-15 23:35:54 -07:00
config Add backup library 2021-08-11 01:27:41 -07:00
database Fix issue with multiple payments 2021-09-27 19:46:08 -07:00
public Add backup library 2021-08-11 01:27:41 -07:00
resources Add api back to footer 2022-04-24 19:25:57 -05:00
routes Make API page accessible again 2022-04-24 19:34:26 -05:00
storage Initial Commit 2021-07-15 23:35:54 -07:00
tests Initial Commit 2021-07-15 23:35:54 -07:00
.editorconfig Initial Commit 2021-07-15 23:35:54 -07:00
.env.example Finish rough draft of website 2021-08-06 13:06:07 -07:00
.gitattributes Initial Commit 2021-07-15 23:35:54 -07:00
.gitignore Add log files to gitignore 2021-08-10 15:19:38 -07:00
.styleci.yml Initial Commit 2021-07-15 23:35:54 -07:00
LICENSE Add license 2021-07-15 23:53:01 -07:00
README.md Launch :) 2021-08-10 18:24:48 -07:00
artisan Initial Commit 2021-07-15 23:35:54 -07:00
composer.json Add backup library 2021-08-11 01:27:41 -07:00
composer.lock Add backup library 2021-08-11 01:27:41 -07:00
package-lock.json Fix dropdown and npm run production 2021-08-06 15:57:45 -07:00
package.json Initial Commit 2021-07-15 23:35:54 -07:00
phpunit.xml Initial Commit 2021-07-15 23:35:54 -07:00
server.php Initial Commit 2021-07-15 23:35:54 -07:00
webpack.mix.js Almost complete site 2021-07-31 00:03:33 -07:00

README.md

XMRMEMES.COM

About XmrMemes

Meme site for Monero. You can submit memes and get paid.

Dependencies on a LAMP Server

sudo apt install php-bcmath supervisor composer php-curl php-xml

Installing Vendor Packages

composer install

Running Monero Daemon

./monerod --testnet
./monero-wallet-rpc --testnet --rpc-bind-port 28083 --disable-rpc-login --wallet-dir .

Creating the Database

php artisan migrate

Creating Initial Wallet (Set Wallet Name in .env)

php artisan db:seed --class=WalletSeeder

Cron Job to process payments

You must set up supervisor https://laravel.com/docs/8.x/queues#supervisor-configuration to process queues (jobs)

Then set up 1 cron job to call

* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1

Config file

Config options are in the .env.example file which should copied into a .env file

This Project Uses Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.