Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question Structuring My Project?

Joined
Mar 7, 2016
Messages
54
I'm reading @Party tutorials for coding for newbs and i cant seem to figure out how to structure my project to keep it clean and efficient in IntelliJ. Help?
 
Joined
Aug 23, 2015
Messages
1,970
I recommend you have a folder for api stuff that you will use across many bots. Then, at the same level as your api package, a folder for bots. Inside bots, a folder for each skill. Inside skill folder, make a folder for the specific bot in case you have multiple bots for a skill.
 
Joined
Mar 7, 2016
Messages
54
He says this in his tutorial:

a. Project Packages Any project which uses Spectre should have the same base structure, that goes something like this: Project.src.com.forumusername.bots

how do i set that base structure in Intellij for my project?
 
Joined
Aug 23, 2015
Messages
1,970
He says this in his tutorial:

a. Project Packages Any project which uses Spectre should have the same base structure, that goes something like this: Project.src.com.forumusername.bots

how do i set that base structure in Intellij for my project?
In your src folder make a folder named com. in your com folder make a folder named crypto. in your crypto folder make a folder named bots. in your cryptofolder make a folder called api
 
Joined
Mar 7, 2016
Messages
54
I dont have an src folder or i cant find it. where is it supposed to be located?
 
the src folder is not showing up for me under projects in Intellij. all there is is something called external libraries.
 
Top