- Discuss your topics in an orderly manner.
- Boards - Collection of topics.
- Topics - An item worth reading about.
- Post - An Article in regards to a topic.
- Python (3.8.10) - A programming language that lets you work more quickly (The universe loves speed!).
- Django (3.2.7) - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
- Bootstrap (5.1) - The world’s most popular framework for building responsive, mobile-first sites.
NB
- Commands are linux based os.
- Run the command after $:
- $ and anything before it, shows prompt status.
-
$ git clone https://github.com/Xerrex/board-mgr.git
-
$ cd board-mgr
-
$ python3 -m venv venv $ source venv/bin/activate
-
(venv)$ pip install -r requirements.txt
-
(venv)$ cp .env.examples .env
NB
- replace
<>
with your actual value in the .env
-
export SECRET_KEY="<Put your most secure key here>" export DEBUG=<change to True or FALSE>
-
(venv)$ source .env
-
(venv)$ python manage.py migrate
-
(venv)$ python manage.py runserver
(venv)$ python manage.py test