New website for Python Paraguay
- Python >= 3.6
- PostgreSQL >= 10+
- Django >=2.2
- Wagtail >=2.6
git clone [email protected]:PythonParaguay/PythonPy.org.git
cd PythonPy.org
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
You can edit and rename dotenv.example
to .env
and it would load at the start.
If you choose other method you're gonna need to define a few environment variables:
DB_NAME_DEV="pythonpy_dev"
DB_USER_DEV=""
DB_PASSW_DEV=""
DB_HOST_DEV="localhost"
DB_HOST_PORT="5432"
SECRET_KEY_DEV="CHANGE_THIS_PUT_A_50_CHAR_RANDOM_STRING"
./manage.py migrate
./manage.py createsuperuser
./manage.py runserver
To load sample data (Optional)
./manage.py loaddata test_data.json
Properbetter frontend- Unit tests
- Documentation
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
This project is licensed under the terms of the GNU General Public License v3.0 - see the LICENSE file for details