B2D Ventures is a web-based application designed to connect investors with promising startup companies. B2D Ventures allows investors to browse, evaluate, and invest in startups that match their interests. The platform ensures a secure and compliant investment process.
All project documents are in the Project Wiki.
- Clone the repository from GitHub.
git clone https://github.com/J-Jullaphong/b2d-ventures.git
- Change directory to b2d-ventures.
cd b2d-ventures
- Create a virtual environment.
python -m venv venv
- Activate the virtual environment.
- Linux and macOS
source venv/bin/activate
- Windows
.\venv\Scripts\activate
- Install Dependencies for required python modules.
pip install -r requirements.txt
- Create a
.env
file for externalized variables.- Linux and macOS
cp sample.env .env
- Windows
copy sample.env .env
- Use a text editor to edit the values in
.env
file as needed.
- Activate virtual environment.
- Linux and macOS
source venv/bin/activate
- Windows
.\venv\Scripts\activate
- Start the server. (If it doesn't work, please use
python3
instead ofpython
)python manage.py runserver
- To use this application, go to this link in your browser.
http://localhost:8000
- To close the running server, press
Ctrl+C
in your terminal or command prompt. - After finish using the application, deactivate the virtual environment.
deactivate