🚀 Deployed to Heroku
- Complete Auth (Register, Login, Logout, Recover password)
- Edit profile
- Upload image from other pages
- Social Network (Like/Unlike, Follow/Unfollow, Activities Feed)
- Forms
- Django admin page
# Clone this repository
$ git clone https://github.com/femalves/memenet
# From the terminal, go to folder
$ cd memenet
# Create and run virtual environment
$ virtualenv env
$ source env/bin/activate
# Install dependencies
$ pip install -r requirements.txt
# Run migrations
$ python manage.py makemigrations
$ python manage.py migrate
# Start local server
$ python manage.py runserver
# Go to http://localhost:8000