Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/billyb2/m03_project
https://github.com/billyb2/m03_project
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/billyb2/m03_project
- Owner: billyb2
- Created: 2022-09-27T18:44:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-21T22:28:30.000Z (over 1 year ago)
- Last Synced: 2023-11-10T19:36:15.248Z (about 1 year ago)
- Language: Python
- Size: 7.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# m03_project
## Quick Start
1. First, clone the repository
2. Next, install dependencies by running: `python3 -m pip install requirements.txt`
- Note that your IDE may just do this for you
3. Begin all migrations by running `python3 manage.py migrate`
4. Finally, to run run the server run `python3 manage.py runserver`Currently, the server only has two functional pages, **/auth/register** and **/auth/login**. The code for those two pages is in the **/authentication** directory, and the interesting files are **views.py**, **forms.py** and **urls.py**. All of the current (ugly but minimal) UI code can be found in **authentication/templates/**. There's currently no JS or CSS used, just a very simple website designed to be able to interact with the server.