https://github.com/kazimovzaman2/cs50w-network
📶 Project 4 of "Harvard CS50’s Web Programming with Python and JavaScript"
https://github.com/kazimovzaman2/cs50w-network
cs50 cs50w cs50web-project4 css django html network python sqlite
Last synced: 3 months ago
JSON representation
📶 Project 4 of "Harvard CS50’s Web Programming with Python and JavaScript"
- Host: GitHub
- URL: https://github.com/kazimovzaman2/cs50w-network
- Owner: kazimovzaman2
- License: mit
- Created: 2023-02-05T04:43:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T19:29:30.000Z (over 2 years ago)
- Last Synced: 2025-01-13T12:48:35.057Z (5 months ago)
- Topics: cs50, cs50w, cs50web-project4, css, django, html, network, python, sqlite
- Language: HTML
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CS50W Project 2 - Network
Status: completed and submitted (Pass)
## Description
* [Project specification](https://cs50.harvard.edu/web/2020/projects/4/network/#specification)
* **[Django](https://www.djangoproject.com) is used as web framework** and SQLite as the database.## Setup
> Python and [Git](https://git-scm.com) must be installed on your computer.
> Creating a virtual environment is optional, but it is usually better to do so if you know how.
Clone this repository
```bash
git clone https://github.com/kazimovzaman2/CS50w-Network.git
cd cs50w_commerce
```
Install any required dependencies
```
pip install -r requirements.txt
```
Initialize the database
```
python manage.py makemigrations auctions
python manage.py migrate
```
Run the development server
```
python manage.py runserver
```## Demo
#### [Go to demo web site](https://network-cs50w.glitch.me/)## Note on academic honesty
If you're taking CS50W, either through [Harvard Extension School](https://extension.harvard.edu/), [Harvard Summer School](https://summer.harvard.edu/) or [OpenCourseWare](https://cs50.harvard.edu/web/), please do not blindly copy paste my code. You are putting yourself at a huge risk for getting excluded from the course by the staff themselves as they grade each project thoroughly. This is a course offered by Harvard, and you will be put up to their standard.