xmrmemes/README.md

68 lines
1.8 KiB
Markdown
Raw Normal View History

2021-08-11 01:24:48 +00:00
## XMRMEMES.COM
2021-07-16 06:35:54 +00:00
## About XmrMemes
Meme site for Monero. You can submit memes and get paid.
2021-08-07 01:20:57 +00:00
## Dependencies on a LAMP Server
2021-07-16 06:35:54 +00:00
```
2021-08-07 01:20:57 +00:00
sudo apt install php-bcmath supervisor composer php-curl php-xml
```
## Installing Vendor Packages
```
composer install
2021-07-16 06:35:54 +00:00
```
## Running Monero Daemon
```
./monerod --testnet
```
```
./monero-wallet-rpc --testnet --rpc-bind-port 28083 --disable-rpc-login --wallet-dir .
```
## Creating the Database
2021-07-16 06:35:54 +00:00
```
php artisan migrate
```
## Creating Initial Wallet (Set Wallet Name in .env)
2021-07-16 06:35:54 +00:00
```
php artisan db:seed --class=WalletSeeder
2021-07-16 06:35:54 +00:00
```
## 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
2021-07-16 06:35:54 +00:00
```
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
2021-07-16 06:35:54 +00:00
```
## Config file
Config options are in the .env.example file which should copied into a .env file
2021-07-16 06:35:54 +00:00
## 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:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
Laravel is accessible, powerful, and provides tools required for large, robust applications.