Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hdevlin2913/careersflux-website
CareersFlux - Career Consulting
https://github.com/hdevlin2913/careersflux-website
cloudinary css django html javascript jinja2 python restful-api
Last synced: 2 months ago
JSON representation
CareersFlux - Career Consulting
- Host: GitHub
- URL: https://github.com/hdevlin2913/careersflux-website
- Owner: hdevlin2913
- Created: 2024-06-07T20:08:03.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-11T04:10:14.000Z (3 months ago)
- Last Synced: 2024-10-30T05:51:25.846Z (2 months ago)
- Topics: cloudinary, css, django, html, javascript, jinja2, python, restful-api
- Language: HTML
- Homepage:
- Size: 9.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CareersFlux - Career Consulting
CareersFlux is a project using Django Framework of our group in the Information System Security subject
## Installation
1. Clone the project:```bash
git clone https://github.com/HiepThanhTran/CareersFlux-Website.git
```2. Create Virtual Environment:
```bash
python -m venv venv
```3. Activate the environment
```bash
source venv/bin/activate # On Windows: venv\Scripts\activate
```4. Install dependencies from requirements.txt
```bash
pip install -r requirements.txt
```5. Makemigration and migrate database:
```bash
python manage.py makemigrations
python manage.py migrate
```*Note*: Make sure you connect to your database configured in the settings.py file:
```bash
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.',
'NAME': '',
'USER': '',
'PASSWORD': 'DATABASE_PASSWORD>',
'HOST': '',
'PORT': ''
}
}
```*Or you can use sqlite3*:
```bash
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
},
}
```## Run locally
- After that just run project in localhost with the following command in terminal:HTTP Protocol
```bash
python manage.py runserver
```HTTPS Protocol (For Login/Signup with Facebook)
```bash
python manage.py runsslserver
```