Existenciality is a Django based web application that shows general questions about life. Check out the web application on Heroku
Following the main instructions from the official documentation on Django!
If you want to run the code of this project you can follow these instructions:
- Clone this respository
git clone https://github.com/luucamay/existenciality.git
-
Set up a virtual environment first. For windows with git bash:
source ~/.virtualenvs/djangodev/Scripts/activate
- Use pip to install Django
python -m pip install Django
- Verify your django installation. Open the python interactive shell and execute the next lines of code.
>>> import django
>>> print(django.get_version())
3.1
- Setup database
- Create the required tables defined at settings.py in the INSTALLEDD_APPS array. Make the migration happen
python manage.py migrate
- Create the admin user
python manage.py createsuperuser
- Open the admin view: http://127.0.0.1:8000/admin
- Create questions in the admin view
- Open the app view: http://127.0.0.1:8000
Si te interesa o quieres saber como construir esta aplicacion puedes leer esta guia