mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Updating settings & README
This commit is contained in:
parent
61796b2145
commit
ad3f6e5651
2 changed files with 52 additions and 14 deletions
58
README.md
58
README.md
|
@ -1,26 +1,64 @@
|
|||
# WOW funding
|
||||
# Wownero Funding System
|
||||
|
||||
## installation (locally)
|
||||

|
||||
|
||||
Create a Postgres user/database for this project
|
||||
A simple Flask application for managing donations.
|
||||
|
||||
Example
|
||||
-------
|
||||
|
||||
[https://funding.wownero.com](https://funding.wownero.com)
|
||||
|
||||
## Installation
|
||||
|
||||
Good luck with trying to get this to run! Some pointers:
|
||||
|
||||
#### Daemon
|
||||
|
||||
First make sure the daemon is up.
|
||||
|
||||
```bash
|
||||
./wownerod --max-concurrency 4
|
||||
```
|
||||
|
||||
#### Wallet RPC
|
||||
|
||||
Expose wallet via RPC.
|
||||
|
||||
```bash
|
||||
./wownero-wallet-rpc --rpc-bind-port 45678 --disable-rpc-login --wallet-file wfs --password ""
|
||||
```
|
||||
|
||||
|
||||
#### Web application
|
||||
|
||||
Download application and configure.
|
||||
|
||||
```
|
||||
sudo apt install python-virtualenv python3 redis-server postgresql-server-dev-*
|
||||
git clone ...
|
||||
cd ffs_site
|
||||
sudo apt install python-virtualenv python3 redis-server postgresql-server postgresql-server-dev-*
|
||||
git clone https://github.com/skftn/wownero-wfs.git
|
||||
cd funding
|
||||
virtualenv -p /usr/bin/python3
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
cp settings.py_example settings.py
|
||||
- change settings accordingly
|
||||
```
|
||||
|
||||
Prepare a database in postgres and create an user for it.
|
||||
|
||||
Run the application:
|
||||
|
||||
```bash
|
||||
python run_dev.py
|
||||
```
|
||||
|
||||
### to-do
|
||||
Beware `run_dev.py` is meant as a development server.
|
||||
|
||||
- rate limit posting of proposals per user
|
||||
### Contributors
|
||||
|
||||
https://imgur.com/KKzFQe9
|
||||
https://imgur.com/Dl3wRgD
|
||||
- [camthegeek](https://github.com/camthegeek)
|
||||
|
||||
### License
|
||||
|
||||
© 2018 WTFPL – Do What the Fuck You Want to Public License
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue