https://github.com/jeanp413/reddit-clone
A reddit clone using angular and django
https://github.com/jeanp413/reddit-clone
angular django django-rest-framework reddit webapp
Last synced: 2 months ago
JSON representation
A reddit clone using angular and django
- Host: GitHub
- URL: https://github.com/jeanp413/reddit-clone
- Owner: jeanp413
- License: mit
- Created: 2018-04-05T21:12:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T21:24:40.000Z (about 8 years ago)
- Last Synced: 2025-01-25T04:45:35.992Z (over 1 year ago)
- Topics: angular, django, django-rest-framework, reddit, webapp
- Language: TypeScript
- Size: 146 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RedditClone
## Get Started
### Client
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:4200 and proxy to localhost:8000
npm start
```
Now open http://localhost:4200/ in your browser
### Server
``` bash
cd server
# create virtual environment
python3 -m venv .env
source .env/bin/activate
# install dependencies
pip install -r requirements.txt
# serve with hot reload at localhost:8000
python manage.py runserver
```