Welcome to Ruoom Core! Follow these steps to set up your development environment and start using Ruoom Core. For a visual walkthrough, check out our instructional video.
Create PostgreSQL Database: Create a PostgreSQL database called “Ruoom” owned by a user named “ruoom_admin” with the password “password”. You can do this manually using PGAdmin or using the following SQL commands:
Copy
CREATE DATABASE Ruoom;CREATE USER ruoom_admin WITH PASSWORD 'password';ALTER DATABASE Ruoom OWNER TO ruoom_admin;
Install Requirements: Install all necessary dependencies using the requirements file.
Copy
pip install -r requirements.txt
Initialize the Database: Set up PostgreSQL with a database called “Ruoom”, a user called “ruoom_admin”, and password “password”. Then, run the following command to apply migrations:
Copy
python manage.py migrate
Run the Development Server: Start the local development server to see Ruoom Core in action.
Copy
python manage.py runserver
You can now access the application at localhost:8000. You should be met with the following page that allows you to create your admin credentials: