diff --git a/README.md b/README.md index 2712f32..68a7845 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,64 @@ -# WOW funding +# Wownero Funding System -## installation (locally) +![whoop](https://i.imgur.com/xVS3UGq.png) -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 "" ``` -sudo apt install python-virtualenv python3 redis-server postgresql-server-dev-* -git clone ... -cd ffs_site + + +#### Web application + +Download application and configure. + +``` +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. + +### Contributors -- rate limit posting of proposals per user +- [camthegeek](https://github.com/camthegeek) -https://imgur.com/KKzFQe9 -https://imgur.com/Dl3wRgD +### License © 2018 WTFPL – Do What the Fuck You Want to Public License diff --git a/settings.py_example b/settings.py_example index f13f786..ee96463 100644 --- a/settings.py_example +++ b/settings.py_example @@ -14,8 +14,8 @@ PSQL_DB = '' SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI', 'postgresql://{user}:{pw}@localhost/{db}').format(user=PSQL_USER, pw=PSQL_PASS, db=PSQL_DB) -SESSION_COOKIE_NAME = os.environ.get('{coincode}_SESSION_COOKIE_NAME', '{coincode}_id').format(coincode=COINCODE) -SESSION_PREFIX = os.environ.get('{coincode}_SESSION_PREFIX', 'session:').format(coincode=COINCODE) +SESSION_COOKIE_NAME = os.environ.get('{coincode}_SESSION_COOKIE_NAME', '{coincode}_id').format(coincode=COINCODE.upper()) +SESSION_PREFIX = os.environ.get('{coincode}_SESSION_PREFIX', 'session:').format(coincode=COINCODE.upper()) REDIS_HOST = os.environ.get('REDIS_HOST', '127.0.0.1') REDIS_PORT = int(os.environ.get('REDIS_PORT', 6379)) @@ -28,7 +28,7 @@ BIND_PORT = os.environ.get("BIND_PORT", 5004) if not BIND_PORT: raise Exception("BIND_PORT missing") -HOSTNAME = os.environ.get("{coincode}_HOSTNAME", socket.gethostname()).format(coincode=COINCODE) +HOSTNAME = os.environ.get("{coincode}_HOSTNAME", socket.gethostname()).format(coincode=COINCODE.upper()) # If using a local RPC, no need for --rpc-login credentials unless you're binding wallet-rpc to 0.0.0.0. If you are, you're bad. # elif, remote wallet-rpc, enable --rpc-login and enter credentials below. @@ -79,4 +79,4 @@ What will be delivered? What goals will be reached? #### Why you? What skills and experience do you have? -""".strip().format(coincode=COINCODE) \ No newline at end of file +""".strip().format(coincode=COINCODE.upper()) \ No newline at end of file