Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbrsagor/webapp
The WebApp is a simple website management web application provided by Django CMS. The application is one of the most popular CMS Wagtail.
https://github.com/mbrsagor/webapp
bootstrap django django-rest-framework python
Last synced: 1 day ago
JSON representation
The WebApp is a simple website management web application provided by Django CMS. The application is one of the most popular CMS Wagtail.
- Host: GitHub
- URL: https://github.com/mbrsagor/webapp
- Owner: mbrsagor
- Created: 2019-07-01T09:25:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T09:23:43.000Z (almost 3 years ago)
- Last Synced: 2023-03-05T08:23:58.311Z (over 1 year ago)
- Topics: bootstrap, django, django-rest-framework, python
- Language: HTML
- Homepage:
- Size: 4.94 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django-Wagtail
The WebApp is a simple website management web application provided by Django CMS. The application is one of the most popular CMS Wagtail.> N:B: I'm teaching my friends for university academic purposes making the web app.
### Prerequisites
###### Prerequisites- Python 3.8.5
- Psql 13.0The following steps will walk you thru installation on a Mac. I think linux should be similar. It's also possible to develop on a Windows machine, but I have not documented the steps. If you've developed django apps on Windows, you should have little problem getting up and running.
```bash
git clone https://github.com/mbrsagor/webapp.git
cd webapp
virtualenv venv --python=python3.8
source venv/bin/activate
```##### Run development server:
```bash
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
```###### Use Dockerfile for development:
```
docker compose build
docker compose up
```* ALTER USER postgres with encrypted password 'postgres';
#### Deployment Ngnix configurations:
- ``sudo nano /etc/nginx/sites-available/webapp``
- ``sudo nginx -t && sudo systemctl restart nginx``