Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnbedeir/survey-web-app
This is a Python Django web application
https://github.com/johnbedeir/survey-web-app
ansible-playbook django-framework docker-compose dockerfile pip python sqlite
Last synced: about 1 month ago
JSON representation
This is a Python Django web application
- Host: GitHub
- URL: https://github.com/johnbedeir/survey-web-app
- Owner: johnbedeir
- Created: 2021-04-24T05:46:46.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T06:41:17.000Z (over 2 years ago)
- Last Synced: 2024-11-01T18:42:32.816Z (3 months ago)
- Topics: ansible-playbook, django-framework, docker-compose, dockerfile, pip, python, sqlite
- Language: Python
- Homepage:
- Size: 11 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python-Django-Web-App
## How to run?
`NOTE: Make sure you already have Python and Pip installed`
### Step 1: Create .env file
` Create .env file from the env.example template and generate new SECRET_KEY using the following website:`
[DJANGO SECRET KEY GEN](https://djecrety.ir/)
### Step 2: Create the DataBase
`Rename the existing database file "db.sqlite3.example" to be "db.sqlite3"`
### Step 3: Install the requirements.txt
`Run the follwing command to install the requirements.txt`
```
pip install -r requirements.txtOR
pip3 install -r requirements.txt
```### Step 4: Run the application
`Run the application using the following command`
`NOTE: Replace with the port number you would like to use ex:8000`
```
python3 manage.py runserver 0.0.0.0:```