Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 17 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T21:24:40.000Z (almost 7 years ago)
- Last Synced: 2024-11-25T06:43:26.416Z (3 months 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 .envsource .env/bin/activate
# install dependencies
pip install -r requirements.txt# serve with hot reload at localhost:8000
python manage.py runserver
```