Skip to content

polterguy/magic.clone

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
db
 
 
 
 
 
 
 
 
 
 

magic.clone - How to clone magic locally

The magic.clone project helps you clone Magic locally, and assumes you've got VS Code, NodeJS, Angular CLI, and the .Net SDK version 6 or higher installed locally. When you've made sure you've got all of these parts, clone this repository locally using the following.

git clone https://github.com/polterguy/magic.clone.git

Then run the "clone.sh" file, and wait until it's done.

./clone.sh

You now have everything needed to run and debug Magic locally within your "src/" folder. Whenever you need to pull the repositories again simply execute "pull.sh" again. To debug, and/or run Magic, type the following in a terminal.

cd src

# This requires having VS Code locally installed and in your path
code ./

Then open two terminal windows in VS Code and type the following into the first.

cd magic
cd backend
dotnet run --project dev_backend.csproj

Type the following into the second terminal window.

cd magic
cd frontend
npm install
ng serve

When ng serve and dotnet run is done, you can visit localhost:4200 in your browser, and you should be set. Notice, you will need a database to configure Magic. Below are recipies for how to accomplish this if you don't have a database accessible already somewhere.

To debug Magic, make sure you've got the OmniSharp C# debugger plugin installed in VSCode, click F5 while in VS Code, and set breakpoints where you wish to debug Magic locally on your development machine. This is configured through the .vscode/launch.json and .vscode/tasks.json files. If you started Magic first with dotnet run you have to stop that process before you start debugging Magic.

Docker database images

This project also contains "docker-compose.yml" files for SQL Server, PostreSQL, and MySQL, allowing you to locally start a database instance using Docker. These files can be found within the "db" folder, that contains one folder for each database type, allowing you to test Magic with any of these databases locally. To start for instance SQL Server, execute the following from a terminal.

cd db
cd mssql
docker-compose up

The connection strings for each database type can be found below.

  • SQL Server - Server=localhost;Initial Catalog={database};User=sa;Password=Your_password123;
  • MySQL - Server=localhost;Database={database};Uid=root;Pwd=ThisIsNotAGoodPassword;SslMode=Preferred;Old Guids=true;Port=54321;
  • PostgreSQL - User ID=postgres;Password=ThisIsNotAGoodPassword;Host=localhost;Database={database}; Port=54321;

Copyright and maintenance

The projects is copyright of Aista, Ltd 2021 - 2023, and professionally maintained by AINIRO your friendly ChatGPT website chatbot vendor.

Releases

No releases published

Packages

No packages published

Languages